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-02-05 00:41:59 +0000
committerStijn Buys <ingar@osirion.org>2008-02-05 00:41:59 +0000
commit8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e (patch)
treeb4ac5b825a118e8c88f4003603bca231ea3bc8bb /src/core/core.h
parente63d8bec31ad067efb7aafd1c798bcdab8db8faf (diff)
renamed ApplicationInterface to Application
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h6
1 files changed, 3 insertions, 3 deletions
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"