blob: a2f6622170efca80394e8e6a95b0c55d1aaef54f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package NET.worlds.network;
import java.io.IOException;
public abstract class receivedNetPacket extends netPacket {
public receivedNetPacket(ObjID id, int cmd) {
super(id, cmd);
}
public receivedNetPacket() {
}
public final void init(ObjID objID) {
this._objID = objID;
}
abstract void parseNetData(ServerInputStream var1) throws IOException;
abstract void process(WorldServer var1) throws Exception;
}
|