gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-lib/examples/cross-platform/platformer_template/src/player.h
1 #ifndef PLAYER_HEADER
2 #define PLAYER_HEADER
3 #include <gbdk/platform.h>
4
5 extern uint16_t playerX, playerY;
6 extern int16_t playerXVelocity, playerYVelocity;
7
8 void SetupPlayer(void) BANKED;
9 uint8_t UpdatePlayer(void) BANKED;
10
11 #endif
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.