summaryrefslogtreecommitdiff
path: root/DiscoBot/Characters/Character.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Characters/Character.cs')
-rw-r--r--DiscoBot/Characters/Character.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/DiscoBot/Characters/Character.cs b/DiscoBot/Characters/Character.cs
index 2c2fc65..ddba35b 100644
--- a/DiscoBot/Characters/Character.cs
+++ b/DiscoBot/Characters/Character.cs
@@ -25,6 +25,7 @@
public Character(string path) : this()
{
this.Load(path); // load
+ this.Post_process(); // calculate derived values
}
public Character(Character c, string name, int stDv = 2) : this()
@@ -238,7 +239,12 @@
return output.ToString();
}
- private void Load(string path)
+ private void Post_process()
+ {
+
+ }
+
+ private void Load(string path)
{
var reader = new XmlTextReader(path);
while (reader.Read())