Huge refactor, Adding more code to engine from the game

This commit is contained in:
sam
2026-03-19 22:32:26 +05:45
parent 493338d91b
commit 09941e3e1d
10 changed files with 799 additions and 39 deletions
+14
View File
@@ -0,0 +1,14 @@
package edit2d
game_mode :: enum
{
PLAY,
EDIT,
}
engine_game :: struct {
curr_level : string,
interface : interface_state,
mode : game_mode,
}