mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-19 15:22:30 +02:00
11 lines
191 B
Java
11 lines
191 B
Java
package ru.nanit.limbo.protocol;
|
|
|
|
public interface PacketIn extends Packet {
|
|
|
|
@Override
|
|
default void encode(ByteMessage msg) {
|
|
// Can be ignored for incoming packets
|
|
}
|
|
|
|
}
|