mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
21 lines
302 B
C++
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;
|
|
}
|