mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
25 lines
401 B
C++
25 lines
401 B
C++
#ifndef CLIENT_CLIENT_HPP
|
|
#define CLIENT_CLIENT_HPP
|
|
|
|
#include "event/Event.hpp"
|
|
#include <tempest/Vector.hpp>
|
|
|
|
class CVar;
|
|
|
|
namespace Client {
|
|
extern CVar* g_accountListVar;
|
|
extern HEVENTCONTEXT g_clientEventContext;
|
|
}
|
|
|
|
void ClientInitializeGame(uint32_t mapId, C3Vector position);
|
|
|
|
void ClientPostClose(int32_t a1);
|
|
|
|
void CommonMain();
|
|
|
|
void StormInitialize();
|
|
|
|
void WowClientInit();
|
|
|
|
#endif
|