summaryrefslogtreecommitdiff
path: root/DSALib/Characters/Entity.cs
blob: 6b03e50092940fa3129d4b856395e1641e751628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace DSALib.Characters
{
    public class Entity
    {
        public string Name { get; set; }

        public override string ToString()
        {
            return this.Name;
        }
    }
}