11 lines
203 B
C++
11 lines
203 B
C++
#include <ft2build.h>
|
|
#include FT_FREETYPE_H
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <string>
|
|
|
|
namespace ADVect::Graphics {
|
|
void Init();
|
|
void Destroy();
|
|
void RenderString(const std::string&, SDL_Surface*);
|
|
}
|