mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
12 lines
188 B
C++
12 lines
188 B
C++
#include "Game/LiveActor/ActorStateBase.hpp"
|
|
|
|
bool ActorStateBaseInterface::update() {
|
|
updateNerve();
|
|
|
|
if (mIsDead) {
|
|
return true;
|
|
}
|
|
|
|
control();
|
|
return false;
|
|
} |