コード例 #1
0
    public void setStat(RegisteredStat stat)
    {
        this.stat     = stat.stat;
        this.category = stat.category;

        this.updateLabels();
    }
コード例 #2
0
ファイル: RegisteredStat.cs プロジェクト: CodeShaper13/ms49
 public RegisteredStat(IStatistic stat, EnumStatisticCategory category)
 {
     this.stat     = stat;
     this.category = category;
 }