summaryrefslogtreecommitdiff
path: root/src/level.h
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-01-13 15:20:37 +0500
committerilotterytea <iltsu@alright.party>2025-01-13 15:20:37 +0500
commitd5cc4f654fc50502c9e4f9ebbe310b9158d5b0a4 (patch)
tree2b09459978721db5484c6e14dbbdb6f1ad9ccdeb /src/level.h
parent0a87b324c3bec9d7304e183072e1b5e42c4dc144 (diff)
feat: level struct and basic functions for initialization (wip)
Diffstat (limited to 'src/level.h')
-rw-r--r--src/level.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/level.h b/src/level.h
new file mode 100644
index 0000000..fe8f62f
--- /dev/null
+++ b/src/level.h
@@ -0,0 +1,9 @@
+#include "raylib.h"
+typedef struct {
+ int width, height;
+ Vector3 *vectors[];
+} Level;
+
+Level *SE_CreateLevel(int width, int height);
+void SE_RenderLevel(Level *level);
+void SE_FreeLevel(Level *level);