blob: f53081e888f665d37b1173b1c9c2f3f4561015ac (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DSACore.Models.Database
{
public class GeneralSpell : Talent
{
public char Comlexity = 'A';
public GeneralSpell(string name, string roll, char comlexity = 'A') :base(name, roll)
{
Comlexity = comlexity;
}
public GeneralSpell(string name, string roll) : base(name, roll)
{
}
public GeneralSpell()
{
}
}
}
|