From 8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 5 Feb 2008 00:41:59 +0000 Subject: renamed ApplicationInterface to Application --- src/core/core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/core.h') diff --git a/src/core/core.h b/src/core/core.h index eb8e067..3802cca 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -8,7 +8,7 @@ #define __INCLUDED_CORE_H__ #include "core/gameinterface.h" -#include "core/applicationinterface.h" +#include "core/application.h" /// core contains the basic functionality of the engine namespace core @@ -17,13 +17,13 @@ namespace core inline GameInterface *game() { return GameInterface::instance(); } /// pointer to the current ApplicationInterface - inline ApplicationInterface *application() { return ApplicationInterface::instance(); } + inline Application *application() { return Application::instance(); } /// true if the core is connected to a game module inline bool connected() { return (GameInterface::instance() && GameInterface::instance()->connected); } /// return the time the core has been running, in seconds - inline float time() { return ApplicationInterface::instance()->current_time; } + inline float time() { return Application::instance()->current_time; } }; #include "core/commandbuffer.h" -- cgit v1.2.3