summaryrefslogtreecommitdiff
path: root/DSALib/Models/Dsa/KampfTalent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Models/Dsa/KampfTalent.cs')
-rw-r--r--DSALib/Models/Dsa/KampfTalent.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/DSALib/Models/Dsa/KampfTalent.cs b/DSALib/Models/Dsa/KampfTalent.cs
new file mode 100644
index 0000000..51ad255
--- /dev/null
+++ b/DSALib/Models/Dsa/KampfTalent.cs
@@ -0,0 +1,16 @@
+namespace DSALib.Models.Dsa
+{
+ public class KampfTalent : Database.DataObject
+ {
+ public KampfTalent(string name, int at, int pa)
+ {
+ Name = name;
+ At = at;
+ Pa = pa;
+ }
+
+ public int At { get; set; }
+
+ public int Pa { get; set; }
+ }
+} \ No newline at end of file