Nothing to see here folks 👀

This commit is contained in:
2023-11-25 21:38:04 +02:00
parent 5f33dd06ab
commit 374acec24b
40 changed files with 1313 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ import java.util.function.Supplier;
*/
public interface CraterNetworkHandler {
<T extends CraterPacket<T>> void registerPacket(Class<? extends T> clazz, Supplier<T> supplier, PacketDirection packetDirection);
<T extends CraterPacket<T>> void registerPacket(Class<T> clazz, Supplier<T> supplier, PacketDirection packetDirection);
Packet<?> toServerBound(CraterPacket<?> packet);