rnd-20001205-3-src
[rocksndiamonds.git] / src / files.h
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2000 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * files.h                                                  *
12 ***********************************************************/
13
14 #ifndef FILES_H
15 #define FILES_H
16
17 #include "main.h"
18
19 void LoadLevel(int);
20 void SaveLevel(int);
21
22 void LoadTape(int);
23 void SaveTape(int);
24
25 void LoadScore(int);
26 void SaveScore(int);
27
28 void LoadLevelInfo(void);
29 void LoadSetup(void);
30 void SaveSetup(void);
31 void LoadLevelSetup_LastSeries(void);
32 void SaveLevelSetup_LastSeries(void);
33 void LoadLevelSetup_SeriesInfo(void);
34 void SaveLevelSetup_SeriesInfo(void);
35
36 #endif  /* FILES_H */