Exemplo n.º 1
0
 public Fist()
 {
     this.state = FistType.unthrown;
 }
Exemplo n.º 2
0
 public void Unthrow()
 {
     state = FistType.unthrown;
 }
Exemplo n.º 3
0
 public FistType SetState(FistType NewState)
 {
     state = NewState;
     return(state);
 }
Exemplo n.º 4
0
 public FistType Throw()
 {
     state = (FistType)random.Next(1, 4);
     return(this.State());
 }