#pragma once #include "RE/H/hkArray.h" #include "RE/H/hkBool.h" #include "RE/H/hkFlags.h" #include "RE/H/hknpBodyId.h" #include "RE/H/hknpShapeSignals.h" namespace RE { class hknpShape; class hknpShapeManager { public: class MutableShapeInfo { public: // members hknpShapeManager* m_shapeManager; // 0x00 const hknpShape* m_shape; // 0x08 hkArray m_bodyIds; // 0x10 hkFlags m_mutations; // 0x20 }; static_assert(sizeof(MutableShapeInfo) == 0x28); // members hkArray m_mutableShapeInfos; // 0x00 hkArray m_freeMutableShapeInfos; // 0x10 hkBool m_isAnyShapeMutated; // 0x20 }; static_assert(sizeof(hknpShapeManager) == 0x28); }