thunderbrew/src/client/Client.hpp

23 lines
327 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef CLIENT_CLIENT_HPP
#define CLIENT_CLIENT_HPP
#include "event/Event.hpp"
#include <cstdint>
class CVar;
namespace Client {
extern CVar* g_accountListVar;
extern HEVENTCONTEXT g_clientEventContext;
}
void ClientPostClose(int32_t a1);
2023-01-02 13:17:18 -06:00
void CommonMain();
2023-01-02 13:17:18 -06:00
void StormInitialize();
2023-01-02 13:17:18 -06:00
void WowClientInit();
2023-01-02 13:17:18 -06:00
#endif