mirror of
https://github.com/zeldaret/ss
synced 2026-08-19 05:51:59 -04:00
d_t_mole_prohibit OK (#31)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#include <d/tg/d_t_mole_prohibit.h>
|
||||
|
||||
SPECIAL_ACTOR_PROFILE(MOLE_PROHIBIT_TAG, dTgMoleProhibit_c, fProfile::MOLE_PROHIBIT_TAG, 0x0025, 0, 0);
|
||||
|
||||
STATE_DEFINE(dTgMoleProhibit_c, Wait);
|
||||
|
||||
int dTgMoleProhibit_c::create() {
|
||||
mStateMgr.changeState(StateID_Wait);
|
||||
return SUCCEEDED;
|
||||
}
|
||||
|
||||
int dTgMoleProhibit_c::doDelete() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
int dTgMoleProhibit_c::actorExecute() {
|
||||
mStateMgr.executeState();
|
||||
return 1;
|
||||
}
|
||||
|
||||
int dTgMoleProhibit_c::draw() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
void dTgMoleProhibit_c::initializeState_Wait() {}
|
||||
void dTgMoleProhibit_c::executeState_Wait() {}
|
||||
void dTgMoleProhibit_c::finalizeState_Wait() {}
|
||||
|
||||
Reference in New Issue
Block a user