summaryrefslogtreecommitdiff
path: root/counter.h
blob: 42504297eea81830d76e1da012fd0933846b8c9e (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef COUNTER_H
#define COUNTER_H

#include <SDL.h>

int draw_counter(SDL_Renderer *rend,
		SDL_Point screen_pos, int size, SDL_Color color,
		int number, int digits);

#endif