diff options
Diffstat (limited to 'constants.gd')
-rw-r--r-- | constants.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/constants.gd b/constants.gd index 7e1a37d..a275dc5 100644 --- a/constants.gd +++ b/constants.gd @@ -1,8 +1,14 @@ class_name Constants + enum Gender { Female, Male, Both, Server, } + +static var Packet_DB = { + LoginServerLoginPacket.header: LoginServerLoginPacket, + LoginServerLoginSuccessPacket.new().header: LoginServerLoginSuccessPacket, +} |