32 lines
638 B
Java
32 lines
638 B
Java
package com.flaremicro.crossjeeves.net.packet;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.DataOutputStream;
|
|
import java.io.IOException;
|
|
|
|
import com.flaremicro.crossjeeves.net.NetworkHandler;
|
|
|
|
public class Packet127KeepAlive extends Packet{
|
|
|
|
public Packet127KeepAlive(){
|
|
}
|
|
|
|
public void recievePacket(DataInputStream in) throws IOException {
|
|
}
|
|
|
|
public void sendPacket(DataOutputStream out) throws IOException {
|
|
super.sendPacket(out);
|
|
}
|
|
|
|
public void processPacket(NetworkHandler networkHandler){
|
|
networkHandler.handlePacket(this);
|
|
}
|
|
|
|
@Override
|
|
public Packet cloneTypeOnly() {
|
|
return new Packet127KeepAlive();
|
|
}
|
|
|
|
|
|
}
|