summaryrefslogtreecommitdiff
path: root/DSALib/KampfTalent.cs
blob: 7e4e9be6f6090b3d431014b006e291088d21fbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace DSALib
{
    public class KampfTalent
    {
        public KampfTalent(string name, int at, int pa)
        {
            this.Name = name;
            this.At = at;
            this.Pa = pa;
        }

        public string Name { get; set; }

        public int At { get; set; }

        public int Pa { get; set; }
    }
}