From 02fcd22d8cde355aa898a8c6bb4773d9434b8e9a Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 10 Oct 2008 16:41:38 +0000 Subject: adds KeyPress, DevInfo and Stats widgets --- src/core/gameconnection.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/core/gameconnection.h') diff --git a/src/core/gameconnection.h b/src/core/gameconnection.h index 973d96f..95df9f3 100644 --- a/src/core/gameconnection.h +++ b/src/core/gameconnection.h @@ -23,14 +23,16 @@ public: /*----- inspectors ------------------------------------------------ */ /// returns true if the game connection can run a time frime - inline bool running() { return connection_running; } + inline bool running() const { return connection_running; } /// returns true if the game connection can not run a time frime - inline bool error() { return !connection_running; } + inline bool error() const { return !connection_running; } /// returns true if the game is running an interactive module - inline bool interactive() { return true; } + inline bool interactive() const { return true; } + /// return the current game time + inline float time() const { return game_clientframetime; } /*----- mutators -------------------------------------------------- */ -- cgit v1.2.3