summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorOmni <omniscient.oce@gmail.com>2024-08-18 14:03:25 +1000
committerOmni <omniscient.oce@gmail.com>2024-08-18 14:03:25 +1000
commitbe8ab99b38c25e899008582d68e891150b328a4d (patch)
tree3261b3087072434424e937f82479f9d15b28106c /examples
parent10a97636c5a0234ca776097bae4be25dcf3c050e (diff)
start on stack array
Diffstat (limited to 'examples')
-rw-r--r--examples/game_demo/game_demo.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/game_demo/game_demo.c b/examples/game_demo/game_demo.c
index 69023d7..76bc295 100644
--- a/examples/game_demo/game_demo.c
+++ b/examples/game_demo/game_demo.c
@@ -11,6 +11,7 @@
#include "input.h"
#include "keys.h"
#include "loaders.h"
+#include "log.h"
#include "maths.h"
#include "maths_types.h"
#include "pbr.h"
@@ -20,12 +21,19 @@
#include "render_types.h"
#include "shadows.h"
#include "skybox.h"
+#include "stack_array.h"
#include "terrain.h"
static const char* faces[6] = { "assets/skybox/right.jpg", "assets/skybox/left.jpg",
"assets/skybox/top.jpg", "assets/skybox/bottom.jpg",
"assets/skybox/front.jpg", "assets/skybox/back.jpg" };
+typedef struct Thing {
+ float x;
+} Thing;
+
+TYPED_STACK_ARRAY(Thing, Thing, 6);
+
int main() {
Core_Bringup("Celeritas: Game Demo", NULL);