docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/N/NiMatrix3.h"
|
||||
#include "RE/N/NiPoint4.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class BSTransformDeltaEvent
|
||||
{
|
||||
public:
|
||||
// members
|
||||
NiMatrix3 deltaRotation;
|
||||
NiPoint4 deltaTranslation;
|
||||
NiPoint4 previousTranslation;
|
||||
NiPoint4 previousRotation;
|
||||
NiPoint4 previousScale;
|
||||
NiPoint4 currentTranslation;
|
||||
NiPoint4 currentRotation;
|
||||
NiPoint4 currentScale;
|
||||
};
|
||||
static_assert(sizeof(BSTransformDeltaEvent) == 0xA0);
|
||||
}
|
||||
Reference in New Issue
Block a user