libwtk-sdl2  0.0.1
font.hpp
1 #ifndef LIBWTK_SDL2_FONT_HPP
2 #define LIBWTK_SDL2_FONT_HPP
3 
4 #include <string>
5 
6 struct font
7 {
8  std::string path;
9  unsigned int size;
10 };
11 
12 #endif
13 
Definition: font.hpp:6