Make story color values public

This commit is contained in:
Joakim Soderlund 2022-08-07 15:33:03 +02:00
parent f0c901db82
commit d1482c2330

View file

@ -115,9 +115,9 @@ pub struct Chapter {
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct Color { pub struct Color {
red: u8, pub red: u8,
green: u8, pub green: u8,
blue: u8, pub blue: u8,
} }
#[derive(Clone, Debug)] #[derive(Clone, Debug)]