Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/OVR/SoundPriority.cs
2026-02-21 16:45:37 +08:00

12 lines
121 B
C#

namespace OVR
{
public enum SoundPriority
{
VeryLow = -2,
Low = -1,
Default = 0,
High = 1,
VeryHigh = 2
}
}