mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
16 lines
272 B
C++
16 lines
272 B
C++
#ifndef OPENMW_APPS_OPENCS_MODEL_PREFS_ENUMVALUEVIEW_H
|
|
#define OPENMW_APPS_OPENCS_MODEL_PREFS_ENUMVALUEVIEW_H
|
|
|
|
#include <string_view>
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
struct EnumValueView
|
|
{
|
|
std::string_view mValue;
|
|
std::string_view mTooltip;
|
|
};
|
|
}
|
|
|
|
#endif
|