mirror of
https://github.com/zeldaret/botw
synced 2026-08-08 10:33:14 -04:00
ksys/phys: Add QueryContactPointInfo
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user