コード例 #1
0
ファイル: EndCondition.cs プロジェクト: naegelyd/therawii
 public Repeat_BothEndCondition(Repeat_BothEndCondition ec)
 {
     rEnd = new Repeat_rEndCondition(ec.rEnd);
     tEnd = new Repeat_tEndCondition(ec.tEnd);
     tEnd.Type = TimeLimitType.TotalTime;
 }
コード例 #2
0
ファイル: EndCondition.cs プロジェクト: naegelyd/therawii
 public Repeat_tEndCondition(Repeat_tEndCondition ec)
 {
     this.TimeLimit = ec.TimeLimit;
     this.Type = ec.Type;
 }
コード例 #3
0
ファイル: EndCondition.cs プロジェクト: naegelyd/therawii
 public Repeat_BothEndCondition()
 {
     rEnd = new Repeat_rEndCondition();
     tEnd = new Repeat_tEndCondition();
     tEnd.Type = TimeLimitType.TotalTime;
 }