Exemplo n.º 1
0
 public BattleFX(FiniteEmitter emitter, string sound, int delay)
 {
     Emitter        = emitter;
     Sound          = sound;
     Delay          = delay;
     ScreenMovement = new ScreenMover();
 }
Exemplo n.º 2
0
 public BattleFX(BattleFX other)
 {
     Delay          = other.Delay;
     Emitter        = (FiniteEmitter)other.Emitter.Clone();
     ScreenMovement = new ScreenMover(other.ScreenMovement);
     Sound          = other.Sound;
 }
Exemplo n.º 3
0
 public ScreenMover(ScreenMover other)
 {
     MaxShake     = other.MaxShake;
     MinShake     = other.MinShake;
     MaxShakeTime = other.MaxShakeTime;
 }
Exemplo n.º 4
0
 public BattleFX()
 {
     Emitter        = new EmptyFiniteEmitter();
     ScreenMovement = new ScreenMover();
     Sound          = "";
 }