mirror of
https://github.com/zeldaret/botw
synced 2026-06-27 10:03:00 -04:00
11 lines
201 B
C++
11 lines
201 B
C++
#include "KingSystem/Physics/System/physConstraint.h"
|
|
|
|
namespace ksys::phys {
|
|
|
|
void Constraint::destroy(Constraint* instance) {
|
|
if (instance)
|
|
delete instance;
|
|
}
|
|
|
|
} // namespace ksys::phys
|