diff options
author | TrueDoctor <d-kobert@web.de> | 2018-09-29 20:22:11 +0200 |
---|---|---|
committer | TrueDoctor <d-kobert@web.de> | 2018-09-29 20:22:11 +0200 |
commit | 33dc613fffad69c1c608e21eac6fcd3f2954ead8 (patch) | |
tree | a30876c8effdb19472873539afdbb232e8081bb8 /DSACore/Models/Database/GeneralSpell.cs | |
parent | 6caf0178d0132a9e70144094957a8a6dcee666e5 (diff) |
added all data classes
Diffstat (limited to 'DSACore/Models/Database/GeneralSpell.cs')
-rw-r--r-- | DSACore/Models/Database/GeneralSpell.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/DSACore/Models/Database/GeneralSpell.cs b/DSACore/Models/Database/GeneralSpell.cs new file mode 100644 index 0000000..4f2a8cb --- /dev/null +++ b/DSACore/Models/Database/GeneralSpell.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace DSACore.Models.Database +{ + public class GeneralSpell : Talent + { + private string Comlexity = "A"; + } +} |