Files
Edit2D/game.odin
T

15 lines
158 B
Odin

package edit2d
game_mode :: enum
{
PLAY,
EDIT,
}
engine_game :: struct {
curr_level : string,
interface : interface_state,
mode : game_mode,
}