Files
Radium.DataExporter.Client/Radium.DataExporter.Models/Common/Enums/PlatformMask.cs
2026-05-25 17:21:51 -07:00

18 lines
280 B
C#

namespace Radium.DataExporter.Models.Common.Enums;
[Flags]
public enum PlatformMask
{
None,
Steam,
Oculus,
PlayStation = 4,
Xbox = 8,
RecNet = 16,
IOS = 32,
GooglePlay = 64,
Standalone = 128,
Pico = 256,
Switch = 512,
All = -1
}