library/src/Font.h

24 lines
337 B
C++

#include <utility>
#ifndef LIBRARY_FONT_H
#define LIBRARY_FONT_H
class Font {
private:
std::string name;
int height;
int width;
public:
Font(std::string name, int height, int width);
std::string getName();
int getHeight();
int getWidth();
};
const static Font font_1 = Font("DummyFont", 10, 5);
#endif