1 2 3 4 5 6 7 8 9 10 11 12 13
use super::*;
#[derive(Debug, Serialize, Deserialize)]
pub struct StyleContext {
pub circle_width: f32,
pub circle_texture: Texture,
}
impl Default for StyleContext {
fn default() -> Self {
Self { circle_width: 1.0, circle_texture: Default::default() }
}
}