v2 / vlib / v / tests / generics / modules / ecs / ecs.v
11 lines · 9 sloc · 89 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1module ecs
2
3pub struct Position {
4 x int
5 y int
6}
7
8pub struct Velocity {
9 x f64
10 y f64
11}
12