summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Characters/Entity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/DSALib/Characters/Entity.cs')
-rw-r--r--dsa/DSALib/Characters/Entity.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/dsa/DSALib/Characters/Entity.cs b/dsa/DSALib/Characters/Entity.cs
new file mode 100644
index 0000000..a8a5e81
--- /dev/null
+++ b/dsa/DSALib/Characters/Entity.cs
@@ -0,0 +1,12 @@
+namespace DSALib.Characters
+{
+ public class Entity
+ {
+ public string Name { get; set; }
+
+ public override string ToString()
+ {
+ return Name;
+ }
+ }
+} \ No newline at end of file