aboutsummaryrefslogtreecommitdiff
path: root/src/sdl/draw-text.h
blob: f69d46f64c4a66871fff1c0a6f0070c5242a8910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DRAW_TEXT_H
#define DRAW_TEXT_H

#include "text-style.h"
#include <SDL_ttf.h> // TTF_Font

void
draw_text(
  SDL_Renderer * const,
  TTF_Font * const,
  const text_style_t * const,
  const char * const
);

#endif /* DRAW_TEXT_H */