13 lines
228 B
C++
13 lines
228 B
C++
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_ttf.h>
|
|
|
|
#include <string>
|
|
|
|
namespace util {
|
|
|
|
SDL_Texture* load_img(SDL_Renderer* renderer, const std::string& path);
|
|
TTF_Font* load_font(const std::string& path, int pt);
|
|
|
|
} |