[Teton] Load a font file and write a character to the screen.

This commit is contained in:
Drew Galbraith 2023-11-21 19:14:02 -08:00
parent 96063126cb
commit fe44804dd9
19 changed files with 412 additions and 17 deletions

View file

@ -13,7 +13,12 @@ class String {
String(const char* cstr, uint64_t str_len);
String(StringView str);
String(const String&) = delete;
String(const String&);
String& operator=(const String&);
String(String&&);
String& operator=(String&&);
~String();
const char* cstr() const { return cstr_; }
uint64_t length() const { return length_; }