crocparty/game/game.c
2024-02-28 13:14:48 -08:00

45 lines
725 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();
map_game_map_create_entities();
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);
game_player_set_camera();
sys_map_draw(map_game_map, spr_game_tiles, 0, 0, 0, 0, map_game_map.width, map_game_map.height);
game_player_draw();
sys_camera_reset();
}