1
2
3
4
5
6
7
pub struct MoveSystem;

impl wind::System for MoveSystem {
    fn update(&self) {
        println!("Hello World from a system!");
    }
}