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; } } }