feat(client): add ClientHandlers for SMSG_NEW_WORLD and SMSG_LOGIN_VERIFY_WORLD

This commit is contained in:
VDm 2025-03-30 00:06:18 +04:00
parent 140bcde493
commit 88e21b4a22
5 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#ifndef CLIENT_CLIENTHANDLERS_HPP
#define CLIENT_CLIENTHANDLERS_HPP
#include "net/Types.hpp"
class CDataStore;
int32_t NewWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
int32_t LoginVerifyWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
#endif // CLIENT_CLIENTHANDLERS_HPP