summaryrefslogtreecommitdiff
path: root/src/physics.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2024-11-14 14:46:23 -0500
committerJonathan Bradley <jcb@pikum.xyz>2024-11-14 14:46:23 -0500
commitb2548ba4ce295fcd94a50123fb543fac2ef2bc33 (patch)
tree444a32abb4a094c4fa2f7bc9a95aa86963ad4110 /src/physics.hpp
parentb1d926361b9d613ad712ad161f9a8b7ccab4551d (diff)
add pk.h and major pkmem refactor
Completely replaces the memory module with pkmem pkmem is a newer implementation of the same bucket memory structure. Also includes replacing pkstr.h with pk.h's pkstr
Diffstat (limited to 'src/physics.hpp')
-rw-r--r--src/physics.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/physics.hpp b/src/physics.hpp
index 67ac60c..0cfe49a 100644
--- a/src/physics.hpp
+++ b/src/physics.hpp
@@ -1,14 +1,13 @@
#ifndef PKE_PHYSICS_HPP
#define PKE_PHYSICS_HPP
-#include "macros.hpp"
-#include "memory.hpp"
+#include "vendor/pk.h"
#include <BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h>
TypeSafeInt_H(PhysicsCollision, uint64_t, 0xFFFFFFFFFFFFFFFF);
-extern MemBucket *MemBkt_Bullet;
+extern struct pk_membucket *MemBkt_Bullet;
extern btDiscreteDynamicsWorld *BtDynamicsWorld;
void Physics_Init();