Testing font and color font

This commit is contained in:
2023-06-15 20:48:25 +02:00
parent 501ed1cd35
commit d40486a308
5 changed files with 61 additions and 12 deletions

View File

@@ -34,11 +34,16 @@ namespace JabyEngine {
}
template<typename T>
const T& concat(const T& obj) {
T& concat(T& obj) {
Link::set_adr(&obj);
return obj;
}
template<typename T>
const T& concat(const T& obj) {
return concat(const_cast<T&>(obj));
}
constexpr void terminate() {
this->value |= TerminationValue;
}