mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
18 lines
344 B
C++
18 lines
344 B
C++
#pragma once
|
|
|
|
#include "Font.h"
|
|
|
|
namespace lcd {
|
|
|
|
// helper so the user can just do 'new fontname' without having to know the parameters
|
|
|
|
extern const struct FontChar FDEF_ROBOTO_THIN_CHAR[];
|
|
|
|
class Font_ROBOTO_THIN10 : public Font {
|
|
public:
|
|
Font_ROBOTO_THIN10()
|
|
: Font(68,1,10,0,FDEF_ROBOTO_THIN_CHAR) {
|
|
}
|
|
};
|
|
}
|