library/src/Font.h

18 lines
172 B
C++

#ifndef LIBRARY_FONT_H
#define LIBRARY_FONT_H
class Font {
private:
Font();
public:
std::string getName();
int getHeight();
int getWidth();
};
#endif