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>2011-07-11 19:33:27 +0000
committerStijn Buys <ingar@osirion.org>2011-07-11 19:33:27 +0000
commit83c9d657773fa4f829b533791697ed07e0d9d962 (patch)
tree0c53d6a6d71c14894ac51124933ae31b66164217 /src/core/module.cc
parent99bd770a6030805ecd2cb22671e8f29d32fd59db (diff)
Initial support for saving player data in multiplayer games,
have ships remember their docks and spawns.
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 6271331..18c318e 100644
--- a/src/core/module.cc
+++ b/src/core/module.cc
@@ -44,4 +44,12 @@ void Module::abort()
module_running = false;
}
+void Module::player_load(Player *player)
+{
+}
+
+void Module::player_save(Player *player)
+{
+}
+
}