Archived
1
0

-Added reminder for implementing classes

Signed-off-by: Tony Grosinger <tony@grosinger.net>
This commit is contained in:
Tony Grosinger 2011-09-15 15:59:43 -07:00
parent efdf505f3e
commit bfa517dc49
6 changed files with 9 additions and 6 deletions

View File

@ -6,9 +6,10 @@ package net.grosinger.nomads;
*/
public class PoliceStation extends NeighborBuilding {
public PoliceStation(int x, int y, String name, Building building,
DroneListItem drone) {
public PoliceStation(int x, int y, String name, Building building, DroneListItem drone) {
super(x, y, name, building, drone);
}
// Implement Police Station
}

View File

@ -6,9 +6,10 @@ package net.grosinger.nomads;
*/
public class RepairShop extends NeighborBuilding {
public RepairShop(int x, int y, String name, Building building,
DroneListItem drone) {
public RepairShop(int x, int y, String name, Building building, DroneListItem drone) {
super(x, y, name, building, drone);
}
// Implement Police Station
}

View File

@ -6,9 +6,10 @@ package net.grosinger.nomads;
*/
public class UpgradeShop extends NeighborBuilding {
public UpgradeShop(int x, int y, String name, Building building,
DroneListItem drone) {
public UpgradeShop(int x, int y, String name, Building building, DroneListItem drone) {
super(x, y, name, building, drone);
}
// Implement Police Station
}