Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/base/game.h')
-rw-r--r--src/game/base/game.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/game/base/game.h b/src/game/base/game.h
index d4f0743..6f4cffd 100644
--- a/src/game/base/game.h
+++ b/src/game/base/game.h
@@ -64,13 +64,6 @@ public:
/// game variable: enable or disable development mode
static core::Cvar *g_devel;
-protected:
- /// initialize the game
- virtual void init();
-
- /// shutdown the game
- virtual void shutdown();
-
private:
bool load_world();
@@ -99,6 +92,9 @@ private:
static void func_goto(core::Player *player, const std::string &args);
};
+/// factory function
+core::Module *factory();
+
}
#endif // __INCLUDED_BASE_H__