summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/KampfTalent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/DSA_Game/KampfTalent.cs')
-rw-r--r--DiscoBot/DSA_Game/KampfTalent.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/DiscoBot/DSA_Game/KampfTalent.cs b/DiscoBot/DSA_Game/KampfTalent.cs
deleted file mode 100644
index 79703d5..0000000
--- a/DiscoBot/DSA_Game/KampfTalent.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace DiscoBot.DSA_Game
-{
- public class KampfTalent
- {
- public KampfTalent(string name, int at, int pa)
- {
- this.Name = name;
- this.At = at;
- this.Pa = pa;
- }
-
- public string Name { get; set; }
-
- public int At { get; set; }
-
- public int Pa { get; set; }
- }
-}