summaryrefslogtreecommitdiff
path: root/NET/worlds/network/NetworkNobody.java
diff options
context:
space:
mode:
Diffstat (limited to 'NET/worlds/network/NetworkNobody.java')
-rw-r--r--NET/worlds/network/NetworkNobody.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/NET/worlds/network/NetworkNobody.java b/NET/worlds/network/NetworkNobody.java
new file mode 100644
index 0000000..6f34512
--- /dev/null
+++ b/NET/worlds/network/NetworkNobody.java
@@ -0,0 +1,67 @@
+package NET.worlds.network;
+
+import NET.worlds.scape.Room;
+
+public class NetworkNobody {
+ String _longID;
+ WorldServer _server;
+
+ public NetworkNobody(String longID, WorldServer server) {
+ this._longID = longID;
+ this._server = server;
+ }
+
+ public WorldServer getServer() {
+ return this._server;
+ }
+
+ public String getLongID() {
+ return this._longID;
+ }
+
+ public void appear(Room rm, short x, short y, short z, short yaw) {
+ assert false;
+ }
+
+ public void disappear() {
+ assert false;
+ }
+
+ public void longLoc(short x, short y, short z, short yaw) {
+ assert false;
+ }
+
+ public void roomChange(Room newRoom, short x, short y, short z, short yaw) {
+ assert false;
+ }
+
+ public void shortLoc(byte dx, byte dy, byte dyaw) {
+ assert false;
+ }
+
+ public void teleport(WorldServer serv, byte exitType, byte entryType, Room newRoom, short x, short y, short z, short yaw) {
+ assert false;
+ }
+
+ public void property(OldPropertyList propList) {
+ }
+
+ public void propertyUpdate(PropertyList propList) {
+ }
+
+ public void register() {
+ assert false;
+ }
+
+ public void galaxyDisconnected() {
+ assert false;
+ }
+
+ public void reacquireServer(WorldServer oldServ) {
+ assert false;
+ }
+
+ public void changeChannel(Galaxy g, String oldChannel, String newChannel) {
+ assert false;
+ }
+}