From 82f07c959dc7a87251b4617e462003471e3cc071 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Apr 2018 00:54:19 +0200 Subject: Refactoring and Cleanup --- DiscoBot/Characters/ICharacter.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 DiscoBot/Characters/ICharacter.cs (limited to 'DiscoBot/Characters/ICharacter.cs') diff --git a/DiscoBot/Characters/ICharacter.cs b/DiscoBot/Characters/ICharacter.cs new file mode 100644 index 0000000..135243a --- /dev/null +++ b/DiscoBot/Characters/ICharacter.cs @@ -0,0 +1,17 @@ +namespace DiscoBot.Characters +{ + public interface ICharacter + { + string Name { get; set; } + + string TestTalent(string talent, int erschwernis = 0); + + string TestEigenschaft(string eigenschaft, int erschwernis = 0); + + string Angriff(string talent, int erschwernis = 0); + + string Parade(string talent, int erschwernis = 0); + + string Fernkampf(string talent, int erschwernis = 0); + } +} -- cgit v1.2.3-54-g00ecf