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>2008-09-28 21:34:53 +0000
committerStijn Buys <ingar@osirion.org>2008-09-28 21:34:53 +0000
commit9252bfb61fabea1f45afacb19d805eb5fdd01599 (patch)
tree13fdfb005ab0b690766d35572f0eeecca28f6009 /src/game/game.cc
parent6774f2b5d14c1957d163ef4b7914c2660b59fdfd (diff)
intro module
Diffstat (limited to 'src/game/game.cc')
-rw-r--r--src/game/game.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/game.cc b/src/game/game.cc
index febb830..5e7c826 100644
--- a/src/game/game.cc
+++ b/src/game/game.cc
@@ -6,6 +6,7 @@
#include "game/game.h"
#include "base/base.h"
+#include "intro/intro.h"
#include "core/core.h"
#include "sys/sys.h"
@@ -18,6 +19,9 @@ void register_modules(bool register_client_modules)
con_print << "^BRegistering game modules..." << std::endl;
core::Module::add("base", new base::Base());
+ if (register_client_modules) {
+ core::Module::add("intro", new intro::Intro());
+ }
}
}