diff options
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 8d30884..06525cb 100644 --- a/src/config.h +++ b/src/config.h @@ -2,6 +2,14 @@ // want to use the tileset defined in the TILESET_NAME directive // #define GENERATE_PPM_TILES +#ifdef GENERATE_PPM_TILES + int generated_tile_colors[2][3] = { + { 211, 211, 211 }, // blank | default 255 + { 30, 144, 155 } // not blank | defalut 0 + }; +#endif + + // name of the tileset, localated in files/tilesets directory // must be defined only when GENERATE_PPM_TILES is not // if both arent defined, only tiles.dat will be generated |