/** * @file snake_nonbanked.h * @brief Snake, exported by Image2GB for use with GBDK-2020 - header. * * Unique tiles : 162 * Total tiles : 360 * Size (tiles) : 20x18 * Size (pixels) : 160x144 * Bank : 0 */ #pragma once #include // CONSTANTS /////////////////////////////////////////////////////////////////// #define BACKGROUND_SNAKE_TILES 162U /**< How many unique tiles this background has. */ #define BACKGROUND_SNAKE_SIZE_X 20U /**< Width of this background, in 8x8 tiles (columns). */ #define BACKGROUND_SNAKE_SIZE_Y 18U /**< Height of this background, in 8x8 tiles (rows). */ /** Snake (data), exported by Image2GB for use with GBDK-2020. */ extern const uint8_t BackgroundDataSnake[]; /** Snake (map), exported by Image2GB for use with GBDK-2020. */ extern const uint8_t BackgroundMapSnake[];