Exemplo n.º 1
0
 public Fighter(Fight Fight, GameActorTypeEnum ActorType, Fighter Invocator = null)
 {
     this.ActorType        = ActorType;
     this.Fight            = Fight;
     this.Left             = false;
     this.Buffs            = new FighterBuff();
     this.States           = new FighterState(this);
     this.SpellsController = new FighterSpell();
     this.Invocator        = Invocator;
 }
Exemplo n.º 2
0
 public StaticFighter(Fight Fight, GameActorTypeEnum ActorType, Fighter Invocator = null)
     : base(Fight, ActorType, Invocator)
 {
 }
Exemplo n.º 3
0
 public VirtualFighter(Fight Fight, GameActorTypeEnum ActorType, Fighter Invocator = null)
     : base(Fight, ActorType, Invocator)
 {
 }