예제 #1
0
 public void LeaveSuccess()
 {
     cur_state = new LeaveSuccesState(this);
     cur_state.StartState();
 }
예제 #2
0
 public void StartWait()
 {
     cur_state = new WaitState(this, wait_time);
     cur_state.StartState();
 }
예제 #3
0
 public void LeaveBad()
 {
     cur_state = new LeaveBadState(this);
     cur_state.StartState();
 }
예제 #4
0
 public void Go()
 {
     cur_state = new ComeState(this);
     cur_state.StartState();
 }