first steps

This commit is contained in:
2023-11-08 06:52:20 +01:00
commit 0ef034f14f
8 changed files with 604 additions and 0 deletions

7
src/game.rs Normal file
View File

@@ -0,0 +1,7 @@
use crate::level::Level;
use crate::player::Player;
pub struct Game {
pub player: Player,
pub levels: [Level; 25]
}