Exemplo n.º 1
0
 public IWarEffect CreateWarEffect(WarEffectType warEffectType, bool isWarEffectToggled, bool isWarEffectActive)
 {
     return(new WarEffect(warEffectType, isWarEffectToggled, isWarEffectActive));
 }
Exemplo n.º 2
0
 public WarEffect(WarEffectType warEffectType, bool isWarEffectTogled, bool isEffectActive)
 {
     this.WarEffectType = warEffectType;
     this.IsWarEffectTogled = isWarEffectTogled;
     this.IsEffectActive = isEffectActive;
 }
Exemplo n.º 3
0
 public WarEffect(WarEffectType warEffectType, bool isWarEffectTogled, bool isEffectActive)
 {
     this.WarEffectType     = warEffectType;
     this.IsWarEffectTogled = isWarEffectTogled;
     this.IsEffectActive    = isEffectActive;
 }
Exemplo n.º 4
0
 public IWarEffect CreateWarEffect(WarEffectType warEffectType, bool isWarEffectToggled, bool isWarEffectActive)
 {
     return new WarEffect(warEffectType, isWarEffectToggled, isWarEffectActive);
 }