コード例 #1
0
ファイル: BattleMap.java プロジェクト: slevental/tank_bot
 private boolean isPossible(Command command, Actor actor) {
   Position p = actor.getPosition();
   Element el = p.act(command, 1).get(map);
   return el != null && el.getType() == ElementType.FREE;
 }