summaryrefslogtreecommitdiff
path: root/DSALib/KampfTalent.cs
blob: 7c7eed4ca5280104af695b642ad2620aa6cf800f (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)
        {
            Name = name;
            At = at;
            Pa = pa;
        }

        public string Name { get; set; }

        public int At { get; set; }

        public int Pa { get; set; }
    }
}