1 /*
2 
3 Copyright (C) 2015-2018 Night Dive Studios, LLC.
4 
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 
18 */
19 #ifndef __SAVELOAD_H
20 #define __SAVELOAD_H
21 
22 /*
23  * $Source: r:/prj/cit/src/inc/RCS/saveload.h $
24  * $Revision: 1.9 $
25  * $Author: tjs $
26  * $Date: 1994/09/20 13:19:55 $
27  *
28  *
29  */
30 
31 // Includes
32 
33 // C Library Includes
34 
35 // System Library Includes
36 
37 // Master Game Includes
38 
39 // Game Library Includes
40 
41 // Game Object Includes
42 
43 // Defines
44 #define CFG_LEVEL_VAR "LEVEL"
45 #define OLD_LEVEL_ID_NUM 540
46 #define LEVEL_ID_NUM 100
47 
48 // Prototypes
49 errtype save_current_map(char *fname, Id id_num, uchar flush_mem, uchar pack);
50 errtype load_current_map(Id id_num);
51 uchar go_to_different_level(int targlevel);
52 
53 // Globals
54 
55 #endif // __SAVELOAD_H
56