diff options
author | 3gg <3gg@shellblade.net> | 2025-06-27 10:18:39 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-06-27 10:18:39 -0700 |
commit | bd57f345ed9dbed1d81683e48199626de2ea9044 (patch) | |
tree | 4221f2f2a7ad2244d2e93052bd68187ec91b8ea9 /game/src/game.h | |
parent | 9a82ce0083437a4f9f58108b2c23b957d2249ad8 (diff) |
Diffstat (limited to 'game/src/game.h')
-rw-r--r-- | game/src/game.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/game/src/game.h b/game/src/game.h deleted file mode 100644 index 579ba3c..0000000 --- a/game/src/game.h +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | /* | ||
2 | * Header file defining the game state, included by plugins. | ||
3 | */ | ||
4 | #pragma once | ||
5 | |||
6 | typedef struct PluginEngine PluginEngine; | ||
7 | typedef struct Plugin Plugin; | ||
8 | typedef struct Gfx Gfx; | ||
9 | typedef struct Scene Scene; | ||
10 | typedef struct SceneCamera SceneCamera; | ||
11 | |||
12 | /// Game state. | ||
13 | typedef struct { | ||
14 | int argc; | ||
15 | const char** argv; | ||
16 | PluginEngine* plugin_engine; | ||
17 | Plugin* plugin; | ||
18 | Gfx* gfx; | ||
19 | int width; | ||
20 | int height; | ||
21 | } Game; | ||