예제 #1
0
        public bool Execute(ICell cell, Direction direction)
        {
            Attack attack = new Attack(Actor, Name, Damage, AttackSpeed);

            OverlayAttackPattern(cell, direction, attack);
            attack.AddHitmarker(Hitmarker);
            ModifySpeed();
            SetLastAction();
            return(true);
        }