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 union Entity
{ {
EntityBase base{}; uint8_t pad_00[0x200];
Vehicle vehicle; EntityBase base;
Guest guest; Entity()
Staff staff; : pad_00()
Litter litter; {
SteamParticle steamParticle; }
MoneyEffect money;
VehicleCrashParticle crashParticle;
ExplosionCloud explosionCloud;
CrashSplashParticle crashSplash;
ExplosionFlare explosionFlare;
JumpingFountain jumpingFountain;
Balloon balloon;
Duck duck;
}; };
static Entity _entities[MAX_ENTITIES]{}; static Entity _entities[MAX_ENTITIES]{};