[turbine] Make ClipboardObject use ox::ModelTypeId_v for typeId

This commit is contained in:
Gary Talent 2024-05-28 20:57:49 -05:00
parent 78eb8fca28
commit 791d19504e

View File

@ -29,7 +29,7 @@ template<typename T>
class ClipboardObject: public BaseClipboardObject {
[[nodiscard]]
ox::String typeId() const noexcept final {
return ox::buildTypeId(T::TypeName, T::TypeVersion);
return ox::String(ox::ModelTypeId_v<T>);
}
};