Separate the dispatch and game servers (pt. 1)

gacha is still broken, handbook still needs to be done
This commit is contained in:
KingRainbow44
2023-05-15 00:43:16 -04:00
Unverified
parent 97fbbdca84
commit bcc9ae10cd
28 changed files with 1225 additions and 379 deletions
@@ -0,0 +1,10 @@
package emu.grasscutter.server.dispatch;
/* Packet IDs for the dispatch server. */
public interface PacketIds {
int LoginNotify = 1;
int TokenValidateReq = 2;
int TokenValidateRsp = 3;
int GachaHistoryReq = 4;
int GachaHistoryRsp = 5;
}