コード例 #1
0
 public IWarEffect CreateWarEffect(WarEffectType warEffectType, bool isWarEffectToggled, bool isWarEffectActive)
 {
     return(new WarEffect(warEffectType, isWarEffectToggled, isWarEffectActive));
 }
コード例 #2
0
ファイル: WarEffect.cs プロジェクト: TonyDimitrov/Is-is
 public WarEffect(WarEffectType warEffectType, bool isWarEffectTogled, bool isEffectActive)
 {
     this.WarEffectType = warEffectType;
     this.IsWarEffectTogled = isWarEffectTogled;
     this.IsEffectActive = isEffectActive;
 }
コード例 #3
0
 public WarEffect(WarEffectType warEffectType, bool isWarEffectTogled, bool isEffectActive)
 {
     this.WarEffectType     = warEffectType;
     this.IsWarEffectTogled = isWarEffectTogled;
     this.IsEffectActive    = isEffectActive;
 }
コード例 #4
0
 public IWarEffect CreateWarEffect(WarEffectType warEffectType, bool isWarEffectToggled, bool isWarEffectActive)
 {
     return new WarEffect(warEffectType, isWarEffectToggled, isWarEffectActive);
 }