Initial commit
This commit is contained in:
18
Radium.DataExporter.Models/Common/Enums/PlatformMask.cs
Normal file
18
Radium.DataExporter.Models/Common/Enums/PlatformMask.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
16
Radium.DataExporter.Models/Common/Enums/PlatformType.cs
Normal file
16
Radium.DataExporter.Models/Common/Enums/PlatformType.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Radium.DataExporter.Models.Common.Enums;
|
||||
|
||||
public enum PlatformType
|
||||
{
|
||||
All = -1,
|
||||
Steam,
|
||||
Oculus,
|
||||
PlayStation,
|
||||
Xbox,
|
||||
RecNet,
|
||||
IOS,
|
||||
GooglePlay,
|
||||
Standalone,
|
||||
Pico,
|
||||
Switch
|
||||
}
|
||||
Reference in New Issue
Block a user