mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
14 lines
337 B
C++
14 lines
337 B
C++
|
|
#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
|