From 1f95c377b2abfaa454b1f2298af10956d95ad941 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 13 Feb 2008 00:40:59 +0000 Subject: split client from game module --- src/osirion.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/osirion.cc') diff --git a/src/osirion.cc b/src/osirion.cc index 058fe25..696104f 100644 --- a/src/osirion.cc +++ b/src/osirion.cc @@ -1,13 +1,21 @@ -/* client/main.cc +/* + osirion.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "client/client.h" +#include "game/game.h" int main(int count, char **arguments) { + // preload the game object + game::Game *game = new game::Game(); + client::main(count, arguments); + + game = 0; // prevents variable not used warning + return 0; } -- cgit v1.2.3