From 0b8582a9aa825024edbd0a21c6287bfcccec28de Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 18 Feb 2008 17:52:15 +0000 Subject: core redesign, part II --- src/game/game.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/game/game.h') diff --git a/src/game/game.h b/src/game/game.h index f5f0bc0..811de84 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -30,18 +30,18 @@ const unsigned int cube_enttype = 258; const unsigned int sphere_enttype = 259; const unsigned int axis_enttype = 260; -class Game : public core::GameInterface { +class Game : public core::Module { public: Game(); ~Game(); /// initialize the game - bool init(); + void init(); /// shutdown the game void shutdown(); - /// execute one game grame + /// run one time frame void frame(float seconds); /// is called when a player connects @@ -49,7 +49,6 @@ public: /// is called when a player disconnects void player_disconnect(core::Player *player); - }; } -- cgit v1.2.3