Skip to content

Commit

Permalink
feat: add TESResponse (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadeMe authored Sep 18, 2023
1 parent 2e623e9 commit 46a41db
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions CommonLibSF/include/RE/Starfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,6 @@
#include "RE/T/TESQuest.h"
#include "RE/T/TESRace.h"
#include "RE/T/TESRaceForm.h"
#include "RE/T/TESResponse.h"
#include "RE/T/TESSpellList.h"
#include "RE/T/TESTopicInfo.h"
20 changes: 20 additions & 0 deletions CommonLibSF/include/RE/T/TESResponse.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#pragma once

#include "RE/B/BGSLocalizedString.h"

namespace RE
{
// 28
class TESResponse
{
public:
BGSLocalizedString responseText; // 00
TESResponse* next; // 08
std::uint32_t unk10; // 10 - BSPointerHandleRef?
float unk14; // 14 - Init to -1
std::uint64_t unk18; // 18
std::uint32_t unk20; // 20
std::uint32_t unk24; // 24
};
static_assert(sizeof(TESResponse) == 0x28);
}
4 changes: 4 additions & 0 deletions CommonLibSF/src/RE/T/TESResponse.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#include "RE/T/TESResponse.h"

namespace RE
{}

0 comments on commit 46a41db

Please sign in to comment.