DarkflameServer/dWorldServer/PerformanceManager.h
2022-12-15 19:55:07 -08:00

23 lines
442 B
C++

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