From b2548ba4ce295fcd94a50123fb543fac2ef2bc33 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Thu, 14 Nov 2024 14:46:23 -0500 Subject: 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 --- src/physics.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/physics.hpp') 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 TypeSafeInt_H(PhysicsCollision, uint64_t, 0xFFFFFFFFFFFFFFFF); -extern MemBucket *MemBkt_Bullet; +extern struct pk_membucket *MemBkt_Bullet; extern btDiscreteDynamicsWorld *BtDynamicsWorld; void Physics_Init(); -- cgit v1.2.3