#pragma once #include #include "dCommonVars.h" struct PerformanceProfile { uint32_t serverFramerate; }; class PerformanceManager { public: ~PerformanceManager(); static void SelectProfile(LWOMAPID mapID); static uint32_t GetServerFramerate(); private: PerformanceManager(); static PerformanceProfile m_CurrentProfile; static PerformanceProfile m_DefaultProfile; static PerformanceProfile m_InactiveProfile; static std::map m_Profiles; };