mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 05:31:07 +03:00
31 lines
523 B
C++
31 lines
523 B
C++
#ifndef CLIENT_CLIENT_HPP
|
|
#define CLIENT_CLIENT_HPP
|
|
|
|
#include "event/Event.hpp"
|
|
#include "util/Time.hpp"
|
|
#include <tempest/Vector.hpp>
|
|
|
|
class CVar;
|
|
|
|
namespace Client {
|
|
extern CVar* g_accountNameVar;
|
|
extern CVar* g_accountListVar;
|
|
extern HEVENTCONTEXT g_clientEventContext;
|
|
}
|
|
|
|
extern CGameTime g_clientGameTime;
|
|
|
|
void ClientInitializeGame(uint32_t mapId, C3Vector position);
|
|
|
|
void ClientPostClose(int32_t a1);
|
|
|
|
void CommonMain();
|
|
|
|
void StormInitialize();
|
|
|
|
void WowClientDestroy();
|
|
|
|
void WowClientInit();
|
|
|
|
#endif
|