Beispiel #1
0
 public override void update()
 {
     if (confirmEnter.GetValue() == room.teamMax * 2)
     {
         nextState();
     }
 }
Beispiel #2
0
 public override void update()
 {
     if (acceptCount.GetValue() == room.teamMax * 2)
     {
         nextState();
     }
 }
Beispiel #3
0
 public override void update()
 {
     //Console.WriteLine("Wait...");
     if (value.GetValue() == room.teamMax * 2)//玩家全部进入房间
     {
         nextState();
     }
 }