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