コード例 #1
0
 public AttackAction(Unit attackerUnit, Tile targetedTile)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
 public bool canMoveTo(Tile tile)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public void moveTo(Tile tile)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: Turn.cs プロジェクト: jeanbondeporc/poomoosw
 public void moveUnit(Tile destinination)
 {
     throw new System.NotImplementedException();
 }
コード例 #5
0
ファイル: Turn.cs プロジェクト: jeanbondeporc/poomoosw
 public bool canMoveOnTile(Tile tile)
 {
     throw new System.NotImplementedException();
 }
コード例 #6
0
ファイル: Turn.cs プロジェクト: jeanbondeporc/poomoosw
 public bool canAttackTile(Tile target)
 {
     throw new System.NotImplementedException();
 }
コード例 #7
0
ファイル: Turn.cs プロジェクト: jeanbondeporc/poomoosw
 public void attackTile(Tile targetedTile)
 {
     throw new System.NotImplementedException();
 }
コード例 #8
0
ファイル: MoveAction.cs プロジェクト: jeanbondeporc/poomoosw
 public MoveAction(Unit unitToMove, Tile destination)
 {
     throw new System.NotImplementedException();
 }