blob: 7dcb97cb57c01c771b9dcfb154d64d361ef3d6a4 (
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, double size, SDL_Color color,
int number, int digits);
#endif
|