summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/EUGCQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_Firstpass/Steamworks/EUGCQuery.cs')
-rw-r--r--Assembly_Firstpass/Steamworks/EUGCQuery.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/EUGCQuery.cs b/Assembly_Firstpass/Steamworks/EUGCQuery.cs
new file mode 100644
index 0000000..0ccacc3
--- /dev/null
+++ b/Assembly_Firstpass/Steamworks/EUGCQuery.cs
@@ -0,0 +1,24 @@
+namespace Steamworks;
+
+public enum EUGCQuery
+{
+ k_EUGCQuery_RankedByVote,
+ k_EUGCQuery_RankedByPublicationDate,
+ k_EUGCQuery_AcceptedForGameRankedByAcceptanceDate,
+ k_EUGCQuery_RankedByTrend,
+ k_EUGCQuery_FavoritedByFriendsRankedByPublicationDate,
+ k_EUGCQuery_CreatedByFriendsRankedByPublicationDate,
+ k_EUGCQuery_RankedByNumTimesReported,
+ k_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate,
+ k_EUGCQuery_NotYetRated,
+ k_EUGCQuery_RankedByTotalVotesAsc,
+ k_EUGCQuery_RankedByVotesUp,
+ k_EUGCQuery_RankedByTextSearch,
+ k_EUGCQuery_RankedByTotalUniqueSubscriptions,
+ k_EUGCQuery_RankedByPlaytimeTrend,
+ k_EUGCQuery_RankedByTotalPlaytime,
+ k_EUGCQuery_RankedByAveragePlaytimeTrend,
+ k_EUGCQuery_RankedByLifetimeAveragePlaytime,
+ k_EUGCQuery_RankedByPlaytimeSessionsTrend,
+ k_EUGCQuery_RankedByLifetimePlaytimeSessions
+}