Archived
1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nomads/src/net/grosinger/nomads/GameObject.java
Tony Grosinger 70a933ac09 -Major overhaul of design. Now using interfaces rather than extending
-Added DroneTools to allow a Drone to find out necessary information
-Prevented drone from accessing information it shouldn't get
-Changed moving again
-More stuff that I have forgotten by now
2011-04-22 19:46:44 -07:00

11 lines
207 B
Java

package net.grosinger.nomads;
/*
* Everything that is found on the world will be a type of game object
*/
public interface GameObject {
public String getName();
public void setName(String newName);
}