test_game

This commit is contained in:
ZennDev1337 2023-10-12 15:00:50 +02:00
parent 36cb36ffee
commit e3e27c05df
9 changed files with 212 additions and 59 deletions

Binary file not shown.

View file

@ -7,10 +7,10 @@ using uint24_t = __uint24;
// Initialize FX hardware using FX::begin(FX_DATA_PAGE); in the setup() function.
constexpr uint16_t FX_DATA_PAGE = 0xffff;
constexpr uint24_t FX_DATA_BYTES = 124;
constexpr uint24_t FX_DATA_BYTES = 244;
constexpr uint24_t FX_DATA_TILES = 0x000000;
constexpr uint16_t FX_DATA_TILES_WIDTH = 8;
constexpr uint16_t FX_DATA_TILESHEIGHT = 8;
constexpr uint8_t FX_DATA_TILES_FRAMES = 15;
constexpr uint24_t FX_PLAYER = 0x000000;
constexpr uint16_t FX_PLAYER_WIDTH = 8;
constexpr uint16_t FX_PLAYERHEIGHT = 8;
constexpr uint8_t FX_PLAYER_FRAMES = 15;

View file

@ -1 +1 @@
image_t FX_DATA_TILES = "../assets/player_8x8.png"
image_t FX_PLAYER = "../assets/player_8x8.png"