Copying from gitlab

This commit is contained in:
2026-01-09 10:45:23 +01:00
commit 25d9b22fbd
11 changed files with 937 additions and 0 deletions

12
includes/types.hpp Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
enum class MenuState {
NONE,
PLAY,
EDIT,
};
typedef struct {
int x;
int y;
} Vector2i;