diff options
author | kartofen <mladenovnasko0@gmail.com> | 2022-08-11 21:45:03 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2022-08-11 21:45:03 +0300 |
commit | 30d1c9b30b5642efcba66bdc7956f4d7e321fc97 (patch) | |
tree | ae3cf3aeb4b01f1cb70ae84cc84d453e08da35a5 /src/config.h | |
parent | 57315da56fa3b036f8e3e2d32a5f90a11ae7c3de (diff) |
more used friendly
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 26 |
1 files changed, 26 insertions, 0 deletions
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, }; |