crocparty/game/game.c
2024-02-27 21:07:15 -08:00

40 lines
600 B
C

#include "art/game_player.h"
#include "art/game_tiles.h"
#include "device/device.h"
#include "map/game_map.h"
#include "game.h"
#include "sys/sys.h"
#include <stdio.h>
uint32_t game_frame;
const char* game_title() {
return "Croc Party!";
}
void game_init() {
sys_init();
game_palette_init();
game_player_init();
}
void game_destroy() {
sys_destroy();
}
void game_update() {
sys_update();
game_frame += 1;
game_player_update();
}
void game_draw() {
sys_cls(9);
sys_map_draw(map_game_map, spr_game_tiles, 0, 0, 0, 0, 32, 18);
game_player_draw();
}