diff options
author | Stijn Buys <ingar@osirion.org> | 2008-02-13 00:43:21 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-02-13 00:43:21 +0000 |
commit | a65427370dfe27dfa74efb0bddd44d7ffb9552ac (patch) | |
tree | a36632e6b1784054f1845ae0792a90545f245d55 /src/core | |
parent | 1f95c377b2abfaa454b1f2298af10956d95ad941 (diff) |
oops
Diffstat (limited to 'src/core')
-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; +} + +} + |