Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/application.h')
-rw-r--r--src/core/application.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/application.h b/src/core/application.h
index bb76cfe..bcd4042 100644
--- a/src/core/application.h
+++ b/src/core/application.h
@@ -121,6 +121,7 @@ private:
static void func_say(std::string const &args);
static void func_msg(std::string const &args);
static void func_load(std::string const &args);
+ static void func_rcon(std::string const &args);
};
/// pointer to the application
@@ -131,6 +132,8 @@ inline sys::ConsoleInterface *console() { return sys::ConsoleInterface::instance
/// pointer to the game interface
inline GameInterface *game() { return Application::instance()->game(); }
+
}
+
#endif // __INCLUDED_CORE_APPLICATION_H__