summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/KampfTalent.cs
blob: 79703d52fd078e640266c035a3fd80fb54748cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace DiscoBot.DSA_Game
{
    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; }
    }
}