1 // Copyright 2019 Dolphin Emulator Project
2 // Licensed under GPLv2+
3 // Refer to the license.txt file included.
4 
5 #pragma once
6 
7 namespace AudioCommon
8 {
9 enum class DPL2Quality
10 {
11   Lowest = 0,
12   Low = 1,
13   High = 2,
14   Highest = 3
15 };
16 }  // namespace AudioCommon
17