241242243244245246247
@Override public void Initialize() { direction = Direction.None; lastHit = new ArrayList<Point>(); moves = new ArrayList<Point>(); Map = new FieldMap(); }
109110111112113114115
/** * Initialize the entity. */ @Override public void Initialize() { Map = new FieldMap(); }
60616263646566676869
{ Options.ReadOptionsToProperties(); IsRunning = true; ai = new AI(Options.AIlevel); map = new FieldMap(); map.SetShipsRandomly(); stringMap = new ArrayList<List<Character>>(); stringMap = map.MapAsCharList(false); }