From f0d68ad8edb06ff68400644fd4c943f66705cc97 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 00:35:52 +0200 Subject: Reworked inheritance structure added Entity, Being, ICombatent --- DiscoBot/DSA_Game/Characters/Entity.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 DiscoBot/DSA_Game/Characters/Entity.cs (limited to 'DiscoBot/DSA_Game/Characters/Entity.cs') 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; + } + } +} -- cgit v1.2.3-54-g00ecf