예제 #1
0
 public void SwitchToTrending()
 {
     if (this.ListType == Rust.Workshop.ListType.Trending)
     {
         return;
     }
     this.ListType = Rust.Workshop.ListType.Trending;
     this.Page     = 1;
     this.ForcedRefresh++;
 }
예제 #2
0
 public void SwitchToLatest()
 {
     if (this.ListType == Rust.Workshop.ListType.MostRecent)
     {
         return;
     }
     this.ListType = Rust.Workshop.ListType.MostRecent;
     this.Page     = 1;
     this.ForcedRefresh++;
 }
예제 #3
0
 public void SwitchToPopular()
 {
     if (this.ListType == Rust.Workshop.ListType.MostPopular)
     {
         return;
     }
     this.ListType = Rust.Workshop.ListType.MostPopular;
     this.Page     = 1;
     this.ForcedRefresh++;
 }
예제 #4
0
 public void SwitchToAccepted()
 {
     if (this.ListType == Rust.Workshop.ListType.Accepted)
     {
         return;
     }
     this.ListType = Rust.Workshop.ListType.Accepted;
     this.Page     = 1;
     this.ForcedRefresh++;
 }