Start refactor of FontWriter

This commit is contained in:
Jaby
2023-08-31 05:15:34 +02:00
committed by Jaby
parent 64825e7a15
commit 7609bc15f4
6 changed files with 88 additions and 46 deletions

View File

@@ -61,8 +61,7 @@ namespace JabyEngine {
struct LinkedElement : public Link {
T element;
constexpr LinkedElement() : Link(sizeof(T)), element() {
}
constexpr LinkedElement() = default;
constexpr LinkedElement(const T& element) : Link(sizeof(T)), element(element) {
}