summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Save/Session.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-18 11:46:48 +0200
committerTrueDoctor <d-kobert@web.de>2018-06-18 11:46:48 +0200
commitde22a0719079c5ba23e6ae9a39c921940c4bebed (patch)
treee3a757b0b72d91c1770e7a54800daf12a066c79a /DiscoBot/DSA_Game/Save/Session.cs
parent68e49d3b0936101deba1251e95b9788716c0722a (diff)
simplifyed Savechar class
Diffstat (limited to 'DiscoBot/DSA_Game/Save/Session.cs')
-rw-r--r--DiscoBot/DSA_Game/Save/Session.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/DiscoBot/DSA_Game/Save/Session.cs b/DiscoBot/DSA_Game/Save/Session.cs
index 15ccc18..ed9c18d 100644
--- a/DiscoBot/DSA_Game/Save/Session.cs
+++ b/DiscoBot/DSA_Game/Save/Session.cs
@@ -20,7 +20,7 @@ namespace DiscoBot.DSA_Game.Save
public Dictionary<string, string> Relation { get; set; } = new Dictionary<string, string>(); // dictionary to match the char
- public List<ICharacter> Chars { get; set; } = new List<ICharacter>(); // list of all characters
+ public List<SaveChar> Chars { get; set; } = new List<SaveChar>(); // list of all characters
public string SessionName { get; set; }