From 496c9c32cb8d0d067e675855289904a22b05d9ac Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 23:38:43 +0200 Subject: Implemented critter class and fixed some gui errors --- DSALib/CritterAttack.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 DSALib/CritterAttack.cs (limited to 'DSALib/CritterAttack.cs') 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; } + } +} -- cgit v1.2.3-70-g09d2