Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
shad0wshayd3 authored and github-actions[bot] committed Jun 15, 2024
1 parent eeaa48e commit 5f218e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions CommonLibF4/include/RE/Bethesda/Actor.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,17 @@ namespace RE
class __declspec(novtable) AimModel
{
public:
BGSAimModel::Data aimModelData; // 00
BSSpring::SpringState<NiPoint2> recoilSpring; // 40
BSSpring::SpringState<NiPoint2> recoilDiminishSpring; // 54
NiPoint2 targetRecoilHead; // 68
NiPoint2 currentRecoilHead; // 70
NiPoint2 prevRecoilRad; // 78
NiPoint2 preShotAimRad; // 80
Actor* actor; // 88
float fireConeSize; // 90
float lastShotDeltaMs; // 94
unsigned int continuousShots; // 98
BGSAimModel::Data aimModelData; // 00
BSSpring::SpringState<NiPoint2> recoilSpring; // 40
BSSpring::SpringState<NiPoint2> recoilDiminishSpring; // 54
NiPoint2 targetRecoilHead; // 68
NiPoint2 currentRecoilHead; // 70
NiPoint2 prevRecoilRad; // 78
NiPoint2 preShotAimRad; // 80
Actor* actor; // 88
float fireConeSize; // 90
float lastShotDeltaMs; // 94
unsigned int continuousShots; // 98
};
static_assert(sizeof(AimModel) == 0xA0);

Expand Down
16 changes: 8 additions & 8 deletions CommonLibF4/include/RE/Bethesda/BSExtraData.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace RE
kRangeDistOverride,
kTimeLeft,
kCharge,
kLight, // ExtraLight
kLight, // ExtraLight
kLock, // ExtraLock
kTeleport, // ExtraTeleport
kMapMarker,
Expand Down Expand Up @@ -171,7 +171,7 @@ namespace RE
kOutfitItem,
kEditorLocation,
kLeveledItemBase,
kLightData, // ExtraLightData
kLightData, // ExtraLightData
kScene,
kBadPosition,
kHeadTrackingWeight,
Expand Down Expand Up @@ -365,35 +365,35 @@ namespace RE
static_assert(sizeof(ExtraHealth) == 0x20);

class __declspec(novtable) ExtraCharge :
public BSExtraData // 00
public BSExtraData // 00
{
public:
static constexpr auto RTTI{ RTTI::ExtraCharge };
static constexpr auto VTABLE{ VTABLE::ExtraCharge };
static constexpr auto TYPE{ EXTRA_DATA_TYPE::kCharge };

// members
float charge; // 18
float charge; // 18
};
static_assert(sizeof(ExtraCharge) == 0x20);

struct __declspec(novtable) MapMarkerData :
public TESFullName // 00
public TESFullName // 00
{
std::uint32_t flags; // 10
std::uint32_t flags; // 10
};
static_assert(sizeof(MapMarkerData) == 0x18);

class __declspec(novtable) ExtraMapMarker :
public BSExtraData // 00
public BSExtraData // 00
{
public:
static constexpr auto RTTI{ RTTI::ExtraMapMarker };
static constexpr auto VTABLE{ VTABLE::ExtraMapMarker };
static constexpr auto TYPE{ EXTRA_DATA_TYPE::kMapMarker };

// members
MapMarkerData* mapMarkerData; // 18
MapMarkerData* mapMarkerData; // 18
};
static_assert(sizeof(ExtraMapMarker) == 0x20);

Expand Down

0 comments on commit 5f218e5

Please sign in to comment.