feat: game loop

This commit is contained in:
2023-07-25 02:30:49 -05:00
parent 2b667bb6a2
commit b3a3664578
4 changed files with 55 additions and 0 deletions

11
src/game.rs Normal file
View File

@@ -0,0 +1,11 @@
pub struct Game {}
impl Game {
pub fn new() -> Game {
Game {}
}
pub fn tick() {}
pub fn draw() {}
}