Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-01-15 16:53:03 +0000
committerStijn Buys <ingar@osirion.org>2012-01-15 16:53:03 +0000
commit945d6f4a31c5e565b1bec23268565569f513842c (patch)
treeb094921b33780ad655dac510d98a635800fa5af4 /src/core/module.cc
parent9a0b0432cbdb0bfc2578b74d305a091d56152839 (diff)
Provided core::Module savegame interface.
Diffstat (limited to 'src/core/module.cc')
-rw-r--r--src/core/module.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/module.cc b/src/core/module.cc
index 18c318e..e6f2e9d 100644
--- a/src/core/module.cc
+++ b/src/core/module.cc
@@ -52,4 +52,12 @@ void Module::player_save(Player *player)
{
}
+void Module::game_load(core::Player *player, filesystem::IniFile & inifile)
+{
+}
+
+void Module::game_save(core::Player *player, std::ostream & os)
+{
+}
+
}