Exemplo n.º 1
0
Arquivo: Spell.cs Projeto: jpx/blazera
        public Spell(Spell copy)
            : base(copy)
        {
            Effect = new AnimationMapEffect(copy.Effect);

            RangeArea = new CellArea(copy.RangeArea);
            EffectArea = new CellArea(copy.EffectArea);
        }
Exemplo n.º 2
0
        public AnimationMapEffect(AnimationMapEffect copy)
            : base(copy)
        {
            Effect = new Animation(copy.Effect);
            SoundName = copy.SoundName;

            OnMove += new MoveEventHandler(AnimationMapEffect_OnMove);
        }
Exemplo n.º 3
0
Arquivo: Spell.cs Projeto: jpx/blazera
 public Spell()
     : base()
 {
     Effect = new AnimationMapEffect();
 }