diff options
author | kartofen <mladenovnasko0@gmail.com> | 2022-08-11 23:31:22 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2022-08-11 23:31:22 +0300 |
commit | 02a5f64db70b61ad41c59c17d70feefaba1f21a5 (patch) | |
tree | 495d68f705efa534b85bd3659afc6fb937cf6a17 /src/config.h | |
parent | a756913a7134c207a7d29a1175a428b02f61b777 (diff) |
add colors
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 |