Ejemplo n.º 1
0
 public void Start(Fight fight)
 {
     this.Started = true;
     fight.Send(new SequenceStartMessage((sbyte)SequenceType, Source.Id));
 }
Ejemplo n.º 2
0
 public void Start(Fight fight)
 {
     fight.Send(new SequenceStartMessage(SequenceType, SourceId));
     this.Started = true;
 }
Ejemplo n.º 3
0
 public void End(Fight fight)
 {
     this.Ended = true;
     fight.Send(new SequenceEndMessage(Id, Source.Id, (sbyte)SequenceType));
 }
Ejemplo n.º 4
0
 public void End(Fight fight, ushort actionId)
 {
     fight.Send(new SequenceEndMessage(actionId, SourceId, SequenceType));
 }