Use file to handle packet id mappings

This commit is contained in:
LOOHP
2020-08-04 00:19:38 +08:00
parent 96bb492fc4
commit 212c8f2d41
26 changed files with 164 additions and 99 deletions
@@ -0,0 +1,9 @@
package com.loohp.limbo.Server.Packets;
import java.io.IOException;
public abstract class PacketOut extends Packet {
public abstract byte[] getBytes() throws IOException;
}