mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-08-05 06:18:00 -04:00
11 lines
198 B
Java
11 lines
198 B
Java
package network;
|
|
|
|
import resources.network.ServerType;
|
|
import resources.network.UDPServer.UDPPacket;
|
|
|
|
public interface PacketReceiver {
|
|
|
|
void receivePacket(ServerType type, UDPPacket packet);
|
|
|
|
}
|