mirror of
https://github.com/halpz/re3.git
synced 2025-07-16 15:28:11 +00:00
defined out asserts.
This commit is contained in:
@ -84,4 +84,7 @@ public:
|
||||
return (CAnimBlendAssociation*)((uint8*)l - offsetof(CAnimBlendAssociation, link));
|
||||
}
|
||||
};
|
||||
|
||||
#ifdef CHECK_STRUCT_SIZES
|
||||
static_assert(sizeof(CAnimBlendAssociation) == 0x40, "CAnimBlendAssociation: error");
|
||||
#endif
|
@ -24,4 +24,7 @@ public:
|
||||
void Uncompress(void);
|
||||
void RemoveUncompressedData(void);
|
||||
};
|
||||
|
||||
#ifdef CHECK_STRUCT_SIZES
|
||||
static_assert(sizeof(CAnimBlendHierarchy) == 0x28, "CAnimBlendHierarchy: error");
|
||||
#endif
|
@ -26,4 +26,7 @@ public:
|
||||
void GetCurrentTranslation(CVector &trans, float weight);
|
||||
void GetEndTranslation(CVector &trans, float weight);
|
||||
};
|
||||
|
||||
#ifdef CHECK_STRUCT_SIZES
|
||||
static_assert(sizeof(CAnimBlendNode) == 0x1C, "CAnimBlendNode: error");
|
||||
#endif
|
Reference in New Issue
Block a user