Пример #1
0
        public bool Crashed(IWeapon weapon)
        {
            this.HP -= weapon.GetAttackPoint();

            if (this.HP <= 0)
            {
                EffectUtils.大爆発(this.X, this.Y);

                return(false);
            }
            return(true);
        }