SMG-Decomp
A decompilation of Super Mario Galaxy 1
Loading...
Searching...
No Matches
ActorStateBase.cpp
1#include "Game/LiveActor/ActorStateBase.hpp"
2
3bool ActorStateBaseInterface::update() {
4 updateNerve();
5
6 if (mIsDead) {
7 return true;
8 }
9
10 control();
11 return false;
12}