summaryrefslogtreecommitdiff
path: root/DSACore/DSA_Game/Dsa.cs
diff options
context:
space:
mode:
authorTrueKuehli <rctcoaster2000@hotmail.de>2018-09-27 21:04:16 +0200
committerTrueKuehli <rctcoaster2000@hotmail.de>2018-09-27 21:04:16 +0200
commit5a317ff78acfd18ca586b763817e0810d030ca08 (patch)
tree1a1a96cd68d001c17fdc14034a50090461da335e /DSACore/DSA_Game/Dsa.cs
parent3fa656c782c9235e354f1d7e53f40865ea482eaa (diff)
parent39da0da55a09a56bae3c250e6108c8edf77bfbfd (diff)
Merge branch 'WebApi' of https://github.com/TrueDoctor/DiscoBot into WebApi
Diffstat (limited to 'DSACore/DSA_Game/Dsa.cs')
-rw-r--r--DSACore/DSA_Game/Dsa.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/DSACore/DSA_Game/Dsa.cs b/DSACore/DSA_Game/Dsa.cs
index ff74788..7258e8c 100644
--- a/DSACore/DSA_Game/Dsa.cs
+++ b/DSACore/DSA_Game/Dsa.cs
@@ -13,6 +13,8 @@ namespace DSACore.DSA_Game
public static class Dsa
{
+ public const string rootPath = "DiscoBot\\DSACore\\";
+
private static Session s_session;
public static List<ICharacter> Chars { get; set; } = new List<ICharacter>(); // list of all characters
@@ -37,6 +39,8 @@ namespace DSACore.DSA_Game
}
}
+ public static void start(){}
+
public static void Startup()
{
//new .Auxiliary.Calculator.StringSolver("1d100 - (1d200 + 1) * -50000").Solve();
@@ -49,8 +53,8 @@ namespace DSACore.DSA_Game
.Where(c => !Talente.Exists(v => v.Name.Equals(c.Name))).ToList().ForEach(v => Talente.Add(v));
}
- Properties.Deserialize();
- Properties.Serialize();
+ Properties.Deserialize(rootPath+"Properties");
+ Properties.Serialize(rootPath + "Properties");
Talente = Talente.OrderBy(x => x.Name).ToList();
Session = new Session