summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/Entity.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 00:35:52 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 00:35:52 +0200
commitf0d68ad8edb06ff68400644fd4c943f66705cc97 (patch)
tree19ba132dd5d5ca5a53830176c64f7a864b626c3c /DiscoBot/DSA_Game/Characters/Entity.cs
parent6ecf94cfc3e780d4c960447375b138e7473f6926 (diff)
Reworked inheritance structure
added Entity, Being, ICombatent
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/Entity.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/Entity.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/DiscoBot/DSA_Game/Characters/Entity.cs b/DiscoBot/DSA_Game/Characters/Entity.cs
new file mode 100644
index 0000000..f8e7a12
--- /dev/null
+++ b/DiscoBot/DSA_Game/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;
+ }
+ }
+}