1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Revert old storage until the complex member types are gone

This commit is contained in:
ζeh Matt
2021-11-24 18:25:43 +02:00
parent 0024252328
commit 213064e312

View File

@@ -36,20 +36,12 @@
union Entity
{
EntityBase base{};
Vehicle vehicle;
Guest guest;
Staff staff;
Litter litter;
SteamParticle steamParticle;
MoneyEffect money;
VehicleCrashParticle crashParticle;
ExplosionCloud explosionCloud;
CrashSplashParticle crashSplash;
ExplosionFlare explosionFlare;
JumpingFountain jumpingFountain;
Balloon balloon;
Duck duck;
uint8_t pad_00[0x200];
EntityBase base;
Entity()
: pad_00()
{
}
};
static Entity _entities[MAX_ENTITIES]{};