You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
700 B
45 lines
700 B
using UnityEngine; |
|
using System.Collections; |
|
using System; |
|
using UIWidgets; |
|
|
|
namespace UIWidgetsSamples { |
|
|
|
[Serializable] |
|
public class SteamSpyItem : IItemHeight |
|
{ |
|
public float Height { |
|
get; set; |
|
} |
|
|
|
[SerializeField] |
|
public string Name; |
|
|
|
[SerializeField] |
|
public int ScoreRank; |
|
|
|
[SerializeField] |
|
public int Owners; |
|
|
|
[SerializeField] |
|
public int OwnersVariance; |
|
|
|
[SerializeField] |
|
public int Players; |
|
|
|
[SerializeField] |
|
public int PlayersVariance; |
|
|
|
[SerializeField] |
|
public int PlayersIn2Week; |
|
|
|
[SerializeField] |
|
public int PlayersIn2WeekVariance; |
|
|
|
[SerializeField] |
|
public int AverageTimeIn2Weeks; |
|
|
|
[SerializeField] |
|
public int MedianTimeIn2Weeks; |
|
} |
|
} |