summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/Entity.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 00:47:20 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 00:47:20 +0200
commitdeb3640255abe60289e042944abf66bedcf1184e (patch)
tree77654523901f42ed3c26ddcde12bc1ff5314531d /DiscoBot/DSA_Game/Characters/Entity.cs
parentf0d68ad8edb06ff68400644fd4c943f66705cc97 (diff)
Revert "Reworked inheritance structure"
This reverts commit f0d68ad8edb06ff68400644fd4c943f66705cc97.
Diffstat (limited to 'DiscoBot/DSA_Game/Characters/Entity.cs')
-rw-r--r--DiscoBot/DSA_Game/Characters/Entity.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/DiscoBot/DSA_Game/Characters/Entity.cs b/DiscoBot/DSA_Game/Characters/Entity.cs
deleted file mode 100644
index f8e7a12..0000000
--- a/DiscoBot/DSA_Game/Characters/Entity.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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;
- }
- }
-}