summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Dsa/CritterAttack.cs
blob: bad3bda0c86566afe958cf8a3b828217b878dfad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using DSALib.Models.Database;

namespace DSALib.Models.Dsa {
    public class CritterAttack : 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; }
    }
}