summaryrefslogtreecommitdiff
path: root/DSALib/Models/Dsa/CritterAttack.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSALib/Models/Dsa/CritterAttack.cs')
-rw-r--r--DSALib/Models/Dsa/CritterAttack.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/DSALib/Models/Dsa/CritterAttack.cs b/DSALib/Models/Dsa/CritterAttack.cs
new file mode 100644
index 0000000..8cd8b09
--- /dev/null
+++ b/DSALib/Models/Dsa/CritterAttack.cs
@@ -0,0 +1,19 @@
+namespace DSALib.Models.Dsa
+{
+ public class CritterAttack : Database.DataObject
+ {
+ public CritterAttack(string name, int at, string tp, string comment = "")
+ {
+ Name = name;
+ At = at;
+ Tp = tp;
+ Comment = comment;
+ }
+
+ public int At { get; set; }
+
+ public string Tp { get; set; }
+
+ public string Comment { get; set; }
+ }
+} \ No newline at end of file