summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 23:38:43 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 23:38:43 +0200
commit496c9c32cb8d0d067e675855289904a22b05d9ac (patch)
treec5fdb099be736b2debc9cd8685f63a9053e1195b /DSALib/CritterAttack.cs
parentf8123cd7a2df78fa1e08d2cbf08ce9ffda3d9583 (diff)
Implemented critter class and fixed some gui errors
Diffstat (limited to 'DSALib/CritterAttack.cs')
-rw-r--r--DSALib/CritterAttack.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/DSALib/CritterAttack.cs b/DSALib/CritterAttack.cs
new file mode 100644
index 0000000..0ad4a66
--- /dev/null
+++ b/DSALib/CritterAttack.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DSALib
+{
+ public class CritterAttack
+ {
+ public CritterAttack(string name, int at, string tp, string comment = "")
+ {
+ this.Name = name;
+ this.At = at;
+ this.Tp = tp;
+ this.Comment = comment;
+ }
+
+ public string Name { get; set; }
+
+ public int At { get; set; }
+
+ public string Tp { get; set; }
+
+ public string Comment { get; set; }
+ }
+}