summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-07-27 15:44:45 +1000
committerquou <quou@disroot.org>2024-07-27 15:49:46 +1000
commit4cacaad9e392bf5fe63a90019411f21a72db0e7a (patch)
tree34e3cd4d576c8cbafca6f8f4d5ef381dece3a325 /map.h
parentb8b18d982af8cc8e10372f90c6c7bff4f0b58f69 (diff)
WIP raycasting
Diffstat (limited to 'map.h')
-rw-r--r--map.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/map.h b/map.h
new file mode 100644
index 0000000..6b99d9a
--- /dev/null
+++ b/map.h
@@ -0,0 +1,8 @@
+#ifndef map_h
+#define map_h
+
+typedef struct Map {
+ int w, h;
+} Map;
+
+#endif