summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs')
-rw-r--r--Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs b/Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs
new file mode 100644
index 0000000..79150d5
--- /dev/null
+++ b/Assembly_Firstpass/Steamworks/EAppOwnershipFlags.cs
@@ -0,0 +1,31 @@
+using System;
+
+namespace Steamworks;
+
+[Flags]
+public enum EAppOwnershipFlags
+{
+ k_EAppOwnershipFlags_None = 0,
+ k_EAppOwnershipFlags_OwnsLicense = 1,
+ k_EAppOwnershipFlags_FreeLicense = 2,
+ k_EAppOwnershipFlags_RegionRestricted = 4,
+ k_EAppOwnershipFlags_LowViolence = 8,
+ k_EAppOwnershipFlags_InvalidPlatform = 0x10,
+ k_EAppOwnershipFlags_SharedLicense = 0x20,
+ k_EAppOwnershipFlags_FreeWeekend = 0x40,
+ k_EAppOwnershipFlags_RetailLicense = 0x80,
+ k_EAppOwnershipFlags_LicenseLocked = 0x100,
+ k_EAppOwnershipFlags_LicensePending = 0x200,
+ k_EAppOwnershipFlags_LicenseExpired = 0x400,
+ k_EAppOwnershipFlags_LicensePermanent = 0x800,
+ k_EAppOwnershipFlags_LicenseRecurring = 0x1000,
+ k_EAppOwnershipFlags_LicenseCanceled = 0x2000,
+ k_EAppOwnershipFlags_AutoGrant = 0x4000,
+ k_EAppOwnershipFlags_PendingGift = 0x8000,
+ k_EAppOwnershipFlags_RentalNotActivated = 0x10000,
+ k_EAppOwnershipFlags_Rental = 0x20000,
+ k_EAppOwnershipFlags_SiteLicense = 0x40000,
+ k_EAppOwnershipFlags_LegacyFreeSub = 0x80000,
+ k_EAppOwnershipFlags_InvalidOSType = 0x100000,
+ k_EAppOwnershipFlags_TimedTrial = 0x200000
+}