mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
15 lines
271 B
C++
15 lines
271 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <Config/MappedSetting.h>
|
|
|
|
namespace Config
|
|
{
|
|
class EnumSetting : public MappedSetting<unsigned>
|
|
{
|
|
protected:
|
|
EnumSetting(const std::string& name, const std::string& default, const std::vector<std::string>& enumNames);
|
|
};
|
|
}
|