docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/I/IMovementInterface.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class PlayerControlsMovementData;
|
||||
|
||||
class __declspec(novtable) IMovementPlayerControls :
|
||||
public IMovementInterface // 00
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::IMovementPlayerControls };
|
||||
static constexpr auto VTABLE{ VTABLE::IMovementPlayerControls };
|
||||
|
||||
// add
|
||||
virtual void GetControllerOutput(std::uint32_t a_numericID, PlayerControlsMovementData& a_normalizedOutputData) = 0; // 01
|
||||
};
|
||||
static_assert(sizeof(IMovementPlayerControls) == 0x8);
|
||||
}
|
||||
Reference in New Issue
Block a user