summaryrefslogtreecommitdiff
path: root/src/physics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/physics.h')
-rw-r--r--src/physics.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/physics.h b/src/physics.h
new file mode 100644
index 0000000..e32a785
--- /dev/null
+++ b/src/physics.h
@@ -0,0 +1,13 @@
+#ifndef PHYSICS_H_
+#define PHYSICS_H_
+
+#include <raylib.h>
+#include "entity.h"
+
+void move_and_collide
+(
+ struct entity* entity,
+ float delta_time
+ );
+
+#endif