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