summaryrefslogtreecommitdiff
path: root/engine/src/color.rs
blob: 339b4272f992259b1ee8b4294db4473aa8253f5f (plain)
1
2
3
4
5
6
7
8
#[derive(Debug, Clone)]
#[repr(C)]
pub struct Color<Value>
{
    pub red: Value,
    pub green: Value,
    pub blue: Value,
}