diff options
author | 3gg <3gg@shellblade.net> | 2023-06-16 09:38:15 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2023-06-16 09:38:15 -0700 |
commit | 520e4e67cd9ff53f3c3512c80d07193625e07e3e (patch) | |
tree | f2f8acfc2eb0d2aa279263d93af00beef7e93a1b /gltfview/src/plugins/gltf_view.h | |
parent | 14e6edd6bfe94089d52b5c4b6899dea23923e9be (diff) |
New plugin architecture.
Diffstat (limited to 'gltfview/src/plugins/gltf_view.h')
-rw-r--r-- | gltfview/src/plugins/gltf_view.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gltfview/src/plugins/gltf_view.h b/gltfview/src/plugins/gltf_view.h new file mode 100644 index 0000000..670d88d --- /dev/null +++ b/gltfview/src/plugins/gltf_view.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "plugin.h" | ||
4 | |||
5 | #include <gfx/scene.h> | ||
6 | |||
7 | typedef struct State { | ||
8 | int unused; | ||
9 | } State; | ||