[Teton] Load a font file and write a character to the screen.
This commit is contained in:
parent
96063126cb
commit
fe44804dd9
19 changed files with 412 additions and 17 deletions
|
|
@ -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_; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue