コード例 #1
0
ファイル: MonsterState.cs プロジェクト: scossgrove/RougeTiler
 public Action GetNextStateAction(MonsterState state)
 {
     Monster.changeState(state);
     return(state.GetAction());
 }
コード例 #2
0
ファイル: MonsterState.cs プロジェクト: scossgrove/RougeTiler
 public void ChangeState(MonsterState state)
 {
     Monster.changeState(state);
 }