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: tgfclient.cpp,v 1.2 2003/06/24 21:02:25 torcs Exp $
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
GfInitClient(void)31 GfInitClient(void)
32 {
33     GfInit();
34     gfuiInit();
35     gfMenuInit();
36     gfScreenInit();
37 }
38