summaryrefslogtreecommitdiff
path: root/DSACore/DSA_Game/Dsa.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/DSA_Game/Dsa.cs')
-rw-r--r--DSACore/DSA_Game/Dsa.cs22
1 files changed, 17 insertions, 5 deletions
diff --git a/DSACore/DSA_Game/Dsa.cs b/DSACore/DSA_Game/Dsa.cs
index 8907f96..4573542 100644
--- a/DSACore/DSA_Game/Dsa.cs
+++ b/DSACore/DSA_Game/Dsa.cs
@@ -1,13 +1,15 @@
-using DSALib;
+using System;
+using DSALib;
using DSALib.Characters;
+using Microsoft.EntityFrameworkCore.Design;
-namespace DiscoBot.DSA_Game
+namespace DSACore.DSA_Game
{
using System.Collections.Generic;
using System.IO;
using System.Linq;
- using DiscoBot.DSA_Game.Characters;
- using DiscoBot.DSA_Game.Save;
+ using DSACore.DSA_Game.Characters;
+ using DSACore.DSA_Game.Save;
public static class Dsa
{
@@ -37,7 +39,7 @@ namespace DiscoBot.DSA_Game
public static void Startup()
{
- //new DiscoBot.Auxiliary.Calculator.StringSolver("1d100 - (1d200 + 1) * -50000").Solve();
+ //new .Auxiliary.Calculator.StringSolver("1d100 - (1d200 + 1) * -50000").Solve();
/*Session = new Session();*/
// relation.Add("Papo", "Pump aus der Gosse");
foreach (var filename in Directory.GetFiles("helden", "*.xml"))
@@ -57,5 +59,15 @@ namespace DiscoBot.DSA_Game
};
Session.Save();
}
+
+ public static ICharacter GetCharacter(ulong id)
+ {
+ throw new NotImplementedException();
+ }
+
+ public static ICharacter GetCharacter(string name, ulong groupId)
+ {
+ throw new NotImplementedException();
+ }
}
} \ No newline at end of file