mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-22 16:52:29 +02:00
13 lines
258 B
Java
13 lines
258 B
Java
package ru.nanit.limbo.protocol;
|
|
|
|
import ru.nanit.limbo.protocol.registry.Version;
|
|
|
|
public interface PacketIn extends Packet {
|
|
|
|
@Override
|
|
default void encode(ByteMessage msg, Version version) {
|
|
// Can be ignored for incoming packets
|
|
}
|
|
|
|
}
|