aboutsummaryrefslogtreecommitdiff
path: root/src/draw.c
blob: 8c59bf7351b1d99e90d924cc221b98e2be4fde99 (plain)
1
2
3
4
5
6
7
8
9
void
game_draw(Game *this)
{
	TZR_DrawSetColor(1, 1, 1);
	TZR_DrawClear();

	TZR_DrawSetColor(1, 0, 1);
	TZR_DrawImage(TZR_RES("res/000.png"), this->x, this->y, .center=true);
}