Files

12 lines
188 B
C++
Raw Permalink Normal View History

#include "Game/LiveActor/ActorStateBase.hpp"
bool ActorStateBaseInterface::update() {
updateNerve();
if (mIsDead) {
return true;
}
control();
return false;
}