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
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
1 changed files with 6 additions and 14 deletions

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]{};