blob: 787e88f42b43a52c00c3b7c3314ed3cd274b57c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <common.h>
#include <game.h>
void ThwompHammer(dEn_c *thwomp, ActivePhysics *apThis, ActivePhysics *apOther) {
if (thwomp->name == 0x51) {
thwomp->dEn_c::collisionCat13_Hammer(apThis, apOther);
}
return;
}
void BooHammer(dEn_c *boo, ActivePhysics *apThis, ActivePhysics *apOther) {
if (boo->name == 0xB0) {
boo->dEn_c::collisionCat13_Hammer(apThis, apOther);
}
return;
}
void UrchinHammer(dEn_c *urchin, ActivePhysics *apThis, ActivePhysics *apOther) {
return;
}
|