2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 15:51:21 +00:00

Update CAllFormatsAnimSource.hpp

This commit is contained in:
Jack Andersen 2016-04-11 22:17:14 -10:00
parent adda48a1bf
commit c5a03efec4

View File

@ -19,8 +19,12 @@ enum class EAnimFormat
}; };
class CAnimFormatUnion class CAnimFormatUnion
{
union
{ {
EAnimFormat x0_format; EAnimFormat x0_format;
intptr_t _align = 0;
};
u8 x4_storage[sizeof(CAnimSource)]; u8 x4_storage[sizeof(CAnimSource)];
static void SubConstruct(u8* storage, EAnimFormat fmt, static void SubConstruct(u8* storage, EAnimFormat fmt,
CInputStream& in, IObjectStore& store); CInputStream& in, IObjectStore& store);