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/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"