This repository has been archived on 2022-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
jtmm2-old/src/player.c

8 lines
145 B
C
Raw Normal View History

#include "player.h"
#include <gint/display.h>
void draw_player(Player *player)
{
dpixel(player->position.x, player->position.y, C_BLACK);
}