summaryrefslogtreecommitdiffstats
path: root/src/game.rs
blob: ab04b217dc34d6d768a309739a7f2b6f858d8924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct State {
	pub running: bool
}



pub fn new() -> State {
	return State {
		running: true,
	};
}

pub fn update(state: &mut State) {

}