From f794b9ee52293cefd6ac73fdf0d2a01c5388f057 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 31 Jan 2008 18:22:44 +0000 Subject: modular system works now --- src/client/client.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'src/client/client.h') diff --git a/src/client/client.h b/src/client/client.h index e3ff380..a25643c 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -7,22 +7,23 @@ #ifndef __INCLUDED_CLIENT_H__ #define __INCLUDED_CLIENT_H__ -#include "camera.h" -#include "view.h" -#include "input.h" -#include "video.h" -#include "console.h" +#include "client/console.h" +#include "client/camera.h" +#include "client/view.h" +#include "client/input.h" +#include "client/video.h" /// client-side functions to render and control the gameworld -/*! - * the client namespace contains the necessary functions to - * accept input, send it to the game and render the result +/** The client namespace contains the necessary functions to + * accept input, send it to the game and renders the result */ namespace client { /// initialize the client extern void init(); - /// run the client(); + /// run the client extern void run(); + /// shutdown the client + extern void shutdown(); /// global Video object extern Video video; -- cgit v1.2.3