diff --git a/DangerousD/GameCore/GameObjects/LivingEntities/Monsters/Knife.cs b/DangerousD/GameCore/GameObjects/LivingEntities/Monsters/Knife.cs deleted file mode 100644 index cba749d..0000000 --- a/DangerousD/GameCore/GameObjects/LivingEntities/Monsters/Knife.cs +++ /dev/null @@ -1,19 +0,0 @@ -using DangerousD.GameCore.Graphics; -using Microsoft.Xna.Framework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters -{ - class Knife : Entity - { - public Knife(Vector2 position) : base(position) - { - } - - protected override GraphicsComponent GraphicsComponent => throw new NotImplementedException(); - } -}