summaryrefslogtreecommitdiff
path: root/src/physics.h
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2026-03-15 17:08:36 +0300
committerBoredGuy <osome3717@gmail.com>2026-03-15 17:08:36 +0300
commit9e24aa042e9fb9de34f7b445778518fcb67e24aa (patch)
treeeb71468111da570dad7e1117e04a25aeba08e29c /src/physics.h
parent0ed3bb4569ded185237c6d530285382e6c2b6200 (diff)
Some Updates
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