Collab_RPG/src/game.c

15 lines
222 B
C
Raw Normal View History

#include "game.h"
#include "map.h"
void game_logic(Game *game) {
// to be done
}
void draw(Game *game) {
2023-07-08 16:57:04 +02:00
/* Draw everything. */
render_map(&game->player, game->map_level);
player_draw(&game->player);
}