blob: b0a8feb32ea97871b6823cf86bf19eadbedc47a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace DSALib.Models.Dsa {
public class Zauber : Talent {
public Zauber(string name, string probe, int value, char complexity = 'A', string representation = "Magier")
: base(name, probe, value) {
Complexity = complexity;
Representation = Representation;
}
public char Complexity { get; }
public string Representation { get; }
}
}
|