From b4973888aeaea2dde6058bc06c3f6631349e7f3c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 3 Feb 2008 01:43:03 +0000 Subject: command buffer handling engine function parsing buffered client console --- src/core/core.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/core/core.h') diff --git a/src/core/core.h b/src/core/core.h index 745fd86..64eadb1 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -10,15 +10,20 @@ #include "core/gameinterface.h" #include "core/applicationinterface.h" +#define MAXCMDSIZE 1024 + /// core contains the basic functionality of the engine namespace core { + /// pointer to the current GameInterface inline GameInterface *game() { return GameInterface::instance(); } + /// pointer to the current ApplicationInterface inline ApplicationInterface *application() { return ApplicationInterface::instance(); } - }; +#include "core/commandbuffer.h" +#include "core/func.h" #endif // __INCLUDED_CORE_H__ -- cgit v1.2.3