Testing font and color font
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user