public Cell reproduce(Coordinate coo, Ocean ocean) { Prey tmp = new Prey(coo, Prey.TIME_TO_REPRODUCE); ocean.NumPrey = ocean.NumPrey; return(tmp); }
public void moveFrom(Coordinate from, Coordinate to, Ocean ocean, Cell cell) { Prey prey = cell as Prey; if (prey == null) { return; } Cell tmp = ocean.getCellAt(from); if (tmp.Image == (char)ValueOcean.Fish) { ocean[to._y, to._x] = new Prey(to, prey._timeToReproduce); ocean[from._y, from._x] = null; } }