ksys/phys: Add QueryContactPointInfo

This commit is contained in:
Léo Lam
2022-03-06 21:34:36 +01:00
parent f1ac835664
commit a1f9eea300
4 changed files with 42 additions and 4 deletions
@@ -0,0 +1,17 @@
#pragma once
#include "KingSystem/Physics/System/physContactPointInfo.h"
namespace ksys::phys {
class QueryContactPointInfo : public ContactPointInfo {
public:
static QueryContactPointInfo* make(sead::Heap* heap, int num_points,
const sead::SafeString& name, int a, int b);
static void free(QueryContactPointInfo* info);
using ContactPointInfo::ContactPointInfo;
~QueryContactPointInfo() override;
};
} // namespace ksys::phys