1 /***************************************************************************
2                           level.h  -  description
3                              -------------------
4     begin                : Sat Apr 22 2000
5     copyright            : (C) 2000 by Michael Speck
6     email                : kulkanie@gmx.net
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef LEVEL_H
19 #define LEVEL_H
20 
21 #define LEVEL_NUM   30
22 struct Level {
23     char author[32], name[32];
24     float v; /* v0 per ms */
25     float v_pms; /* change per ms */
26     float vm; /* max v */
27     int w, h; /* format of map */
28     char *map; /* map data */
29     char *extras; /* map of hidden extras */
30 };
31 
32 #endif
33