docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/H/hknpCompoundShape.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class hknpDynamicCompoundShapeData;
|
||||
|
||||
class __declspec(novtable) hknpDynamicCompoundShape :
|
||||
public hknpCompoundShape
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::hknpDynamicCompoundShape };
|
||||
static constexpr auto VTABLE{ VTABLE::hknpDynamicCompoundShape };
|
||||
|
||||
// members
|
||||
hknpDynamicCompoundShapeData* m_boundingVolumeData; // 0xC0
|
||||
};
|
||||
static_assert(sizeof(hknpDynamicCompoundShape) == 0xD0);
|
||||
}
|
||||
Reference in New Issue
Block a user