openmw/components/settings/hrtfmode.hpp

15 lines
208 B
C++
Raw Permalink Normal View History

2023-10-12 20:25:55 +02:00
#ifndef OPENMW_COMPONENTS_SETTINGS_HRTFMODE_H
#define OPENMW_COMPONENTS_SETTINGS_HRTFMODE_H
namespace Settings
{
enum class HrtfMode
{
Disable,
Enable,
Auto,
};
}
#endif