1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/Config/Settings/StatsAggregateTime.h
2023-11-11 17:16:39 +01:00

21 lines
302 B
C++

#pragma once
#include <Config/IntSetting.h>
namespace Config
{
namespace Settings
{
class StatsAggregateTime : public IntSetting
{
public:
StatsAggregateTime()
: IntSetting("StatsAggregateTime", "3", 1, 60)
{
}
};
}
extern Settings::StatsAggregateTime statsAggregateTime;
}