Example #1
0
 public void MoveBoat()
 {
     if (u.status == 0)
     {
         return;
     }
     if (forbid)
     {
         return;
     }
     if (!boat.isEmpty())
     {
         actionManager.moveBoat(boat.getObj(), boat.boatMovePos(), speed);
     }
     u.status = judger.checkGame();
 }