author | Medo <smaxein@googlemail.com> |
Wed, 27 Jun 2012 18:02:45 +0200 | |
changeset 7275 | 15f722e0b96f |
child 7314 | 6171f0bad318 |
permissions | -rw-r--r-- |
/* * Data structure and functions for accessing the map.cfg of named maps. */ #ifndef MAPCFG_H_ #define MAPCFG_H_ typedef struct { char theme[256]; int hogLimit; } flib_mapcfg; /** * Read the map configuration for the map with this name. * The dataDirPath must end in a path separator. */ int flib_mapcfg_read(const char *dataDirPath, const char *mapname, flib_mapcfg *out); #endif /* MAPCFG_H_ */