summaryrefslogtreecommitdiff
path: root/DSALib/Characters/ICombatant.cs
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
commite6181c24124d97f2fbc932b8a68311e625463156 (patch)
treec1f097c344ca266b7941c9668590b0fd35c7870a /DSALib/Characters/ICombatant.cs
parent2490ad5d31fe2ac778ff9303776f0e91f47a2862 (diff)
Move dsa related stuff to subfolder
Diffstat (limited to 'DSALib/Characters/ICombatant.cs')
-rw-r--r--DSALib/Characters/ICombatant.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/DSALib/Characters/ICombatant.cs b/DSALib/Characters/ICombatant.cs
deleted file mode 100644
index a4ce601..0000000
--- a/DSALib/Characters/ICombatant.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace DiscoBot.DSA_Game.Characters
-{
- public interface ICombatant
- {
- string Name { get; set; }
-
- int Lebenspunkte_Basis { get; set; }
- int Lebenspunkte_Aktuell { get; set; }
-
- int Ausdauer_Basis { get; set; }
- int Ausdauer_Aktuell { get; set; }
-
- int Astralpunkte_Basis { get; set; }
- int Astralpunkte_Aktuell { get; set; }
-
- string Angriff(string talent, int erschwernis = 0);
-
- string Parade(string talent, int erschwernis = 0);
- }
-} \ No newline at end of file