mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 16:54:52 +01:00
Add flag to mark an object as a compatibility object
This commit is contained in:
@@ -198,6 +198,15 @@ void Object::SetAuthors(std::vector<std::string>&& authors)
|
||||
_authors = std::move(authors);
|
||||
}
|
||||
|
||||
bool Object::IsCompatibilityObject() const
|
||||
{
|
||||
return _isCompatibilityObject;
|
||||
}
|
||||
void Object::SetIsCompatibilityObject(const bool on)
|
||||
{
|
||||
_isCompatibilityObject = on;
|
||||
}
|
||||
|
||||
bool RCTObjectEntry::IsEmpty() const
|
||||
{
|
||||
uint64_t a, b;
|
||||
|
||||
Reference in New Issue
Block a user