Initial commit

This commit is contained in:
2026-05-25 17:21:51 -07:00
commit eb27d44cbf
26 changed files with 1003 additions and 0 deletions

View 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
}

View 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
}