Files
GameOfLifeEditor/includes/types.hpp
2026-01-09 10:45:23 +01:00

13 lines
107 B
C++

#pragma once
enum class MenuState {
NONE,
PLAY,
EDIT,
};
typedef struct {
int x;
int y;
} Vector2i;