Add missing UGC query update ranking

This commit is contained in:
Robert Kaufmann 2023-12-10 13:51:25 +01:00
parent 4463739be5
commit e7bc77d158

View File

@ -56,6 +56,7 @@ public Query( UgcType type ) : this()
public Query RankedByLifetimeAveragePlaytime() { queryType = UGCQuery.RankedByLifetimeAveragePlaytime; return this; }
public Query RankedByPlaytimeSessionsTrend() { queryType = UGCQuery.RankedByPlaytimeSessionsTrend; return this; }
public Query RankedByLifetimePlaytimeSessions() { queryType = UGCQuery.RankedByLifetimePlaytimeSessions; return this; }
public Query RankedByLastUpdatedDate() { queryType = UGCQuery.RankedByLastUpdatedDate; return this; }
#region UserQuery