summaryrefslogtreecommitdiff
path: root/DSALib/CritterAttack.cs
blob: 5fdcffa261f2a89c531f87688d372e58b82a78ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = "")
        {
            Name = name;
            At = at;
            Tp = tp;
            Comment = comment;
        }

        public string Name { get; set; }

        public int At { get; set; }

        public string Tp { get; set; }

        public string Comment { get; set; }
    }
}