Esempio n. 1
0
File: Spell.cs Progetto: jpx/blazera
        public Spell(Spell copy)
            : base(copy)
        {
            Effect = new AnimationMapEffect(copy.Effect);

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

            OnMove += new MoveEventHandler(AnimationMapEffect_OnMove);
        }
Esempio n. 3
0
File: Spell.cs Progetto: jpx/blazera
 public Spell()
     : base()
 {
     Effect = new AnimationMapEffect();
 }