diff options
-rw-r--r-- | src/core/core.cc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/core/core.cc b/src/core/core.cc new file mode 100644 index 0000000..e7aecaf --- /dev/null +++ b/src/core/core.cc @@ -0,0 +1,33 @@ +/* + core/core.cc + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2. +*/ + +#include "core/core.h" + +namespace core +{ + +GameInterface *game() +{ + return GameInterface::instance(); +} + +Application *application() +{ + return Application::instance(); +} + +bool connected() +{ + return (GameInterface::instance() && GameInterface::instance()->connected); +} + +float time() +{ + return Application::instance()->current_time; +} + +} + |