summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/KampfTalent.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-03 23:16:17 +0200
committerTrueDoctor <d-kobert@web.de>2018-06-03 23:16:17 +0200
commitd63ffc58db0f032cf7573b2a8a7720de2d5050ab (patch)
treed9a656651251bbd1eec233265ef824bf4b0389f0 /DiscoBot/Auxiliary/KampfTalent.cs
parent256154e2ab4244e7267ffc21959a4ce65c982783 (diff)
-General restructuring
-seperated talents and spells
Diffstat (limited to 'DiscoBot/Auxiliary/KampfTalent.cs')
-rw-r--r--DiscoBot/Auxiliary/KampfTalent.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/DiscoBot/Auxiliary/KampfTalent.cs b/DiscoBot/Auxiliary/KampfTalent.cs
deleted file mode 100644
index 05b7c9e..0000000
--- a/DiscoBot/Auxiliary/KampfTalent.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace DiscoBot.Auxiliary
-{
- 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; }
- }
-}