17 lines
265 B
C++
17 lines
265 B
C++
#pragma once
|
|
|
|
#include "RE/N/NiPoint3.h"
|
|
|
|
namespace RE
|
|
{
|
|
class MovementData
|
|
{
|
|
public:
|
|
// members
|
|
NiPoint3A movementRotation; // 00
|
|
NiPoint3A rotationSpeed; // 10
|
|
float movementSpeed; // 20
|
|
};
|
|
static_assert(sizeof(MovementData) == 0x30);
|
|
}
|