summaryrefslogtreecommitdiff
path: root/engine/src/vector.rs
blob: 92192bf310cc57fad5c787a0705c5bb8d8a2944d (plain)
1
2
3
4
5
6
#[derive(Debug)]
pub struct Vec2<Value>
{
    pub x: Value,
    pub y: Value,
}