Files
GabsPuNs-Project_Zenith_Main/Minecraft.Server/RmlManagerStub.cpp
GabsPuNs 3ee643962d Fix compilation for MSVC, also moved some folders.
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"
2026-06-10 21:22:41 -04:00

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()
{
}