summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/world/model_draw.cpp5
-rw-r--r--src/game/world/model_draw.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/src/game/world/model_draw.cpp b/src/game/world/model_draw.cpp
new file mode 100644
index 0000000..a50669a
--- /dev/null
+++ b/src/game/world/model_draw.cpp
@@ -0,0 +1,5 @@
+#include "model_draw.h"
+
+void model_draw( MODEL* model, GAME_DATA* game, VEC2 window, VEC2 winsize ) {
+
+}
diff --git a/src/game/world/model_draw.h b/src/game/world/model_draw.h
new file mode 100644
index 0000000..90be189
--- /dev/null
+++ b/src/game/world/model_draw.h
@@ -0,0 +1,4 @@
+#include "../../render/model.h"
+#include "../../game.h"
+
+extern void model_draw( MODEL* model, GAME_DATA* game, VEC2 window, VEC2 winsize );