steering-wheel-rpi/include/util.h

13 lines
228 B
C
Raw Normal View History

2022-05-19 20:07:15 +02:00
#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);
}