DangerousD/DangerousD/GameCore/GameObjects/Entity.cs

18 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace DangerousD.GameCore.GameObjects
{
public abstract class Entity : GameObject
{
public Entity(Vector2 position) : base(position) {}
}
}