1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 09:14:58 +01:00

Add paint function to entities

This commit is contained in:
ζeh Matt
2021-11-27 15:20:17 +02:00
parent 496fdfd3eb
commit a9f76712b5
16 changed files with 63 additions and 0 deletions

View File

@@ -76,3 +76,9 @@ void EntityBase::Serialise(DataSerialiser& stream)
stream << z;
stream << sprite_direction;
}
// Exists only for signature
void EntityBase::Paint() const
{
Guard::Assert(false, "You are not supposed to call this");
}