elve 0.0.1

engine for browser games (WIP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct Model {
   pub counter: i32,
}

impl Model {
    pub fn new() -> Model {
        let m = Model {counter: 123};
        assert_eq!(m.counter, 123);
        m
    }
}