Skip to content

Commit

Permalink
fix: include missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Nov 21, 2023
1 parent e749a9a commit 85d5027
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CommonLibSF/include/RE/T/TESImageSpaceModifiableForm.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#pragma once

#include "RE/B/BaseFormComponent.h"

namespace RE
{
class TESImageSpaceModifier;

class TESImageSpaceModifiableForm : public BaseFormComponent
{
public:
SF_RTTI_VTABLE(TESImageSpaceModifiableForm);

~TESImageSpaceModifiableForm() override; // 00

// override (BaseFormComponent)
const BSFixedString& GetFormComponentType() const override; // 01 - { return "TESImageSpaceModifiableForm_Component"; }
void InitializeDataComponent() override; // 02 - { return; }

// members
TESImageSpaceModifier* imageSpaceModifying; // 08 - MNAM
};
static_assert(sizeof(TESImageSpaceModifiableForm) == 0x10);
}

0 comments on commit 85d5027

Please sign in to comment.