18 lines
280 B
C#
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
|
|
} |