15 lines
228 B
C#
15 lines
228 B
C#
using System.ComponentModel;
|
|
|
|
namespace Oculus.Platform
|
|
{
|
|
public enum MatchmakingStatApproach
|
|
{
|
|
[Description("UNKNOWN")]
|
|
Unknown = 0,
|
|
[Description("TRAILING")]
|
|
Trailing = 1,
|
|
[Description("SWINGY")]
|
|
Swingy = 2
|
|
}
|
|
}
|