summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/System/physUserTag.cpp
blob: 9ac62117cae02f16e83ca812af14553d9366f332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "KingSystem/Physics/System/physUserTag.h"
#include "KingSystem/Physics/RigidBody/physRigidBody.h"

namespace ksys::phys {

void UserTag::onMaxPositionExceeded(RigidBody* body) {
    body->onMaxPositionExceeded();
}

void UserTag::onImpulse(RigidBody* body_a, RigidBody* body_b, float impulse_a) {
    body_a->onImpulse(body_b, impulse_a);
}

void UserTag::onBodyShapeChanged(RigidBody* body) {}

void UserTag::m5() {}

void UserTag::m7(RigidBody* rigid_body, int a) {}

}  // namespace ksys::phys