pub trait GetColor {
    // Required method
    fn get_color(&self, core: &mut Core) -> Option<Color>;
}
Expand description

Get the color of an object

Required Methods§

source

fn get_color(&self, core: &mut Core) -> Option<Color>

Get the color of the object

Implementors§