summaryrefslogtreecommitdiff
path: root/gltfview/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'gltfview/src/game.h')
-rw-r--r--gltfview/src/game.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/gltfview/src/game.h b/gltfview/src/game.h
deleted file mode 100644
index 93a5e39..0000000
--- a/gltfview/src/game.h
+++ /dev/null
@@ -1,19 +0,0 @@
1/*
2 * Header file defining the game state, included by plugins.
3 */
4#pragma once
5
6typedef struct PluginEngine PluginEngine;
7typedef struct Plugin Plugin;
8typedef struct Gfx Gfx;
9typedef struct Scene Scene;
10typedef struct SceneCamera SceneCamera;
11
12/// Game state.
13typedef struct {
14 int argc;
15 const char** argv;
16 PluginEngine* plugin_engine;
17 Plugin* plugin;
18 Gfx* gfx;
19} Game;