summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GeneralSpell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/GeneralSpell.cs')
-rw-r--r--DSACore/Models/Database/GeneralSpell.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/DSACore/Models/Database/GeneralSpell.cs b/DSACore/Models/Database/GeneralSpell.cs
deleted file mode 100644
index f53081e..0000000
--- a/DSACore/Models/Database/GeneralSpell.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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()
- {
- }
- }
-}