mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-01-06 08:53:43 +01:00
14 lines
195 B
C
14 lines
195 B
C
|
#include "game.h"
|
||
|
|
||
|
#include "map.h"
|
||
|
|
||
|
void game_logic(Game *game) {
|
||
|
// to be done
|
||
|
}
|
||
|
|
||
|
void draw(Game *game) {
|
||
|
render_map(&game->player, game->map_level);
|
||
|
player_draw(&game->player);
|
||
|
}
|
||
|
|