mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-09 23:18:30 +00:00
1. Added again the libraries for MSVC. If you need MinGW libraries version tell me 2. Removed "#include stdafx.h". Is not needed. 3. Renamed "RmlUIAssets" to "UI" and "Menus" to "Iggy"
18 lines
233 B
C++
18 lines
233 B
C++
#include "../Minecraft.Client/RmlManager.h"
|
|
|
|
RmlManager& RmlManager::Get()
|
|
{
|
|
static RmlManager instance;
|
|
return instance;
|
|
}
|
|
|
|
RmlManager::RmlManager()
|
|
: m_initialised(false)
|
|
, m_context(nullptr)
|
|
{
|
|
}
|
|
|
|
RmlManager::~RmlManager()
|
|
{
|
|
}
|