FS2_Open
Open source remastering of the Freespace 2 engine
def_files.h
Go to the documentation of this file.
1 /*
2  * Def_Files.h
3  *
4  * You may not sell or otherwise commercially exploit the source or things you
5  * create based on the source.
6  */
7 
8 
9 
10 
11 #ifndef __DEF_FILES_H_
12 #define __DEF_FILES_H_
13 
14 //Used to retrieve pointer to file data from def_files.cpp
15 const char *defaults_get_file(const char *filename);
16 
17 //WMC -
18 //There are three parts to adding a file
19 //:PART 1: Add variable declaration for new file
20 //:PART 2: Add filename of default file to Default_files[] array, along with content variable
21 //:PART 3: Define the content using the variable declared in part 1.
22 //Do a search in def_files.cpp for the individual part labels for examples and locations.
23 
24 #endif
char * filename
const char * defaults_get_file(const char *filename)
Definition: def_files.cpp:103