This commit is contained in:
polten0 2023-08-17 13:09:42 +03:00
parent 00b71fc645
commit 8581af20b9

View file

@ -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();
}
}