예제 #1
0
 public Request(int newLocation, int newAppearTime)
 {
     location   = newLocation;
     appearTime = newAppearTime;
     state      = requestState.INVISIBLE;
 }
예제 #2
0
 public void SetRequestState(requestState newState)
 {
     state = newState;
 }
예제 #3
0
 public void SetState(requestState mstate)
 {
     state = mstate;
 }