summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/System/physMemSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/KingSystem/Physics/System/physMemSystem.cpp')
-rw-r--r--src/KingSystem/Physics/System/physMemSystem.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/KingSystem/Physics/System/physMemSystem.cpp b/src/KingSystem/Physics/System/physMemSystem.cpp
index a8193a33..834d6e2e 100644
--- a/src/KingSystem/Physics/System/physMemSystem.cpp
+++ b/src/KingSystem/Physics/System/physMemSystem.cpp
@@ -1,5 +1,6 @@
#include "KingSystem/Physics/System/physMemSystem.h"
#include "KingSystem/Physics/System/physContactMgr.h"
+#include "KingSystem/Physics/System/physRigidContactPoints.h"
namespace ksys::phys {
@@ -15,6 +16,12 @@ void MemSystem::freeContactPoints(RigidContactPoints* points) const {
mContactMgr->freeContactPoints(points);
}
+RigidContactPointsEx* MemSystem::allocContactPointsEx(sead::Heap* heap, int num, int num2,
+ const sead::SafeString& name, int a, int b,
+ int c) const {
+ return mContactMgr->allocContactPointsEx(heap, num, num2, name, a, b, c);
+}
+
void MemSystem::registerContactPoints(RigidContactPoints* points) const {
mContactMgr->registerContactPoints(points);
}