protected override void OnLoad(EventArgs e) { base.OnLoad(e); mStats = new AsyncStats(); mStats.Updated += Stats_Updated; statsGrid1.SetStats(mStats.StatRows); ClientSize = new Size(statsGrid1.Width + 20, ClientSize.Height); mStats.Run(); }
public PowerStat(AsyncStats stats, PowerType type) : base(stats) { mType = type; }
public RaceStat(AsyncStats stats, Race race) : base(stats) { mRace = race; }
public ItemStat(AsyncStats stats, ItemType type) : base(stats) { mType = type; }
public StatBase(AsyncStats stats) { mStats = stats; mCounts = new int[100]; }