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-29 18:01:35 +0000
committerStijn Buys <ingar@osirion.org>2008-09-29 18:01:35 +0000
commit381c729e777b50771626703e60b422aafc791513 (patch)
tree856b9467dda75daaa1d78f6dce9dfb746dc338ce /src/core/module.h
parent5b64ecbd39307d17acd8815187f6cd211c384029 (diff)
adds introduction screen to the client
Diffstat (limited to 'src/core/module.h')
-rw-r--r--src/core/module.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/module.h b/src/core/module.h
index b46c296..20029cf 100644
--- a/src/core/module.h
+++ b/src/core/module.h
@@ -33,6 +33,9 @@ public:
/// label of the module
inline std::string const & label() const { return module_label; }
+ /// indicates if this is an interactive module or not
+ inline bool interactive() const { return module_interactive; }
+
/*----- mutators -------------------------------------------------- */
/// initialize the game module
@@ -80,6 +83,7 @@ protected:
void abort();
bool module_running;
+ bool module_interactive;
private:
std::string module_name;