TORCS  1.3.9
The Open Racing Car Simulator
tgfclient.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  tgf.cpp -- The Gaming Framework
3  -------------------
4  created : Fri Aug 13 22:31:43 CEST 1999
5  copyright : (C) 1999 by Eric Espie
6  email : torcs@free.fr
7  version : $Id$
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 
19 #ifdef WIN32
20 #include <windows.h>
21 #endif
22 #include <tgfclient.h>
23 #include <time.h>
24 
25 #include "gui.h"
26 
27 extern void gfScreenInit(void);
28 extern void gfMenuInit(void);
29 
30 void
32 {
33  GfInit();
34  gfuiInit();
35  gfMenuInit();
36  gfScreenInit();
37 }
void gfuiInit(void)
Definition: gui.cpp:90
void gfMenuInit(void)
Definition: guimenu.cpp:39
The Gaming Framework API (client part).
void GfInitClient(void)
Definition: tgfclient.cpp:31
void gfScreenInit(void)
Definition: screen.cpp:131
void GfInit(void)
Definition: tgf.cpp:138