コード例 #1
0
 public ResearchProgress(Player owner, ResearchTopic topic, int level, double investedPoints)
 {
     this.Owner          = owner;
     this.Topic          = topic;
     this.Level          = level;
     this.InvestedPoints = investedPoints;
 }
コード例 #2
0
 public ResearchProgress(ResearchTopic topic, Player owner) :
     this(owner, topic, NotStarted, 0)
 {
 }