mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-09 23:18:30 +00:00
19 lines
253 B
C++
19 lines
253 B
C++
#include "stdafx.h"
|
|
#include "../Minecraft.Client/RmlManager.h"
|
|
|
|
RmlManager& RmlManager::Get()
|
|
{
|
|
static RmlManager instance;
|
|
return instance;
|
|
}
|
|
|
|
RmlManager::RmlManager()
|
|
: m_initialised(false)
|
|
, m_context(nullptr)
|
|
{
|
|
}
|
|
|
|
RmlManager::~RmlManager()
|
|
{
|
|
}
|