Create login logic

This commit is contained in:
zontreck 2024-05-16 02:03:39 -07:00
parent 68e0312c84
commit ad4b7fc4e7
9 changed files with 188 additions and 14 deletions

View file

@ -136,6 +136,12 @@ class Settings {
S2CPongPacket pong = S2CPongPacket.decode(reply);
return pong;
}
case "S2CLoginResponse":
{
S2CLoginResponsePacket response =
S2CLoginResponsePacket.decode(reply);
return response;
}
default:
{
return NullPacket();