1 /***************************************************************************
2 
3     file                 : relief.h
4     created              : Sat Jun  1 18:03:02 CEST 2002
5     copyright            : (C) 2001 by Eric Espi�
6     email                : Eric.Espie@torcs.org
7     version              : $Id: relief.h,v 1.1 2002/06/02 12:05:14 torcs Exp $
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  *                                                                         *
13  *   This program is free software; you can redistribute it and/or modify  *
14  *   it under the terms of the GNU General Public License as published by  *
15  *   the Free Software Foundation; either version 2 of the License, or     *
16  *   (at your option) any later version.                                   *
17  *                                                                         *
18  ***************************************************************************/
19 
20 /** @file
21 
22     @author	<a href=mailto:torcs@free.fr>Eric Espie</a>
23     @version	$Id: relief.h,v 1.1 2002/06/02 12:05:14 torcs Exp $
24 */
25 
26 #ifndef _RELIEF_H_
27 #define _RELIEF_H_
28 
29 extern void LoadRelief(void * TrackHandle, char *reliefFile);
30 extern void CountRelief(int interior, int *nb_vert, int *nb_seg);
31 extern void GenRelief(int interior);
32 
33 #endif /* _RELIEF_H_ */
34 
35 
36 
37