mirror of
https://github.com/zeldaret/botw
synced 2026-06-23 16:45:22 -04:00
20 lines
315 B
C++
20 lines
315 B
C++
#pragma once
|
|
|
|
#include <prim/seadRuntimeTypeInfo.h>
|
|
|
|
namespace ksys::phys {
|
|
|
|
class Constraint {
|
|
SEAD_RTTI_BASE(Constraint)
|
|
|
|
public:
|
|
// FIXME: types
|
|
Constraint();
|
|
virtual ~Constraint();
|
|
|
|
/// No-op if instance is null.
|
|
static void destroy(Constraint* instance);
|
|
};
|
|
|
|
} // namespace ksys::phys
|