From 30d1c9b30b5642efcba66bdc7956f4d7e321fc97 Mon Sep 17 00:00:00 2001 From: kartofen Date: Thu, 11 Aug 2022 21:45:03 +0300 Subject: more used friendly --- src/config.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'src/config.h') diff --git a/src/config.h b/src/config.h index c9743e1..8e2910b 100644 --- a/src/config.h +++ b/src/config.h @@ -1,5 +1,31 @@ +// comment this if you dont want to +// generate the tiles, only the +// tiles.dat file #define GENERATE_PPM_TILES +/* The TILES are + +----------------------------------------------- +|0: ... blank | 1: ... T-piece (down) | +| ... X symetry | ### T symetry | +| ... | .#. | +|-------------------+-------------------------| +|2: .#. cross | 3: ... bar | +| ### X symetry | ### I symetry | +| .#. | ... | +|-------------------+-------------------------| +|4: .#. corner | | +| .## T symetry | | +| ... | | +----------------------------------------------- + +The number are the tile indexes, the values that you +need to put in the tiles_to_load array + + */ + +// Array for which tiles to include the tiles.dat int tiles_to_load[] = { + 0, 1, }; -- cgit v1.2.3