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-11-08 12:58:05 +0000
committerStijn Buys <ingar@osirion.org>2008-11-08 12:58:05 +0000
commitdbb28ef3422bf2442e15d75fd52180cfb9b40102 (patch)
tree16b9f8bb8b5bfa64f9676e4eed134dbe15299c90 /src/core/application.h
parente3512a1b55e97b2eba62847e6e28065eec24c92f (diff)
adds rcon, rconpassword and sv_password
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__