aboutsummaryrefslogtreecommitdiff
path: root/solid.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-06 12:22:50 +1000
committerquou <quou@disroot.org>2023-05-06 12:22:50 +1000
commit937edea9599718e959f8ed135e97c68728855975 (patch)
treeea5d5551b470603d2d907dba4869ff52e742d9de /solid.h
parent91aef268319a77ee8f5a082ca89264bf2671e212 (diff)
Add solid environment collisions.
Diffstat (limited to 'solid.h')
-rw-r--r--solid.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/solid.h b/solid.h
new file mode 100644
index 0000000..e861e6d
--- /dev/null
+++ b/solid.h
@@ -0,0 +1,8 @@
+#ifndef solid_h
+#define solid_h
+
+#include "world.h"
+
+Entity new_solid(World* world, int x, int y, int w, int h);
+
+#endif