summaryrefslogtreecommitdiff
path: root/DSALib/Characters/Entity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Characters/Entity.cs')
-rw-r--r--DSALib/Characters/Entity.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/DSALib/Characters/Entity.cs b/DSALib/Characters/Entity.cs
new file mode 100644
index 0000000..f8e7a12
--- /dev/null
+++ b/DSALib/Characters/Entity.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DiscoBot.DSA_Game.Characters
+{
+ public class Entity
+ {
+ public string Name { get; set; }
+
+ public override string ToString()
+ {
+ return this.Name;
+ }
+ }
+}