CommonLibSSE NG
Loading...
Searching...
No Matches
ILoader.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace RE
7{
8 namespace BSScript
9 {
10 class IStore;
11
12 struct ILoader
13 {
14 public:
15 inline static constexpr auto RTTI = RTTI_BSScript__ILoader;
16
17 virtual ~ILoader(); // 00
18
19 // add
20 virtual ILoader* Clone() = 0; // 01
21 virtual void SetScriptStore(const BSTSmartPointer<IStore>& a_store) = 0; // 02
22 virtual bool GetClass(const char* a_name, UnlinkedTypes::Object& a_object) = 0; // 03
23 };
24 static_assert(sizeof(ILoader) == 0x8);
25 }
26}
Definition UnlinkedTypes.h:179
Definition BSTSmartPointer.h:36
Definition AbsorbEffect.h:6
constexpr REL::VariantID RTTI_BSScript__ILoader(689080, 396935, 0x1f4b948)
Definition ILoader.h:13
static constexpr auto RTTI
Definition ILoader.h:15
virtual void SetScriptStore(const BSTSmartPointer< IStore > &a_store)=0
virtual bool GetClass(const char *a_name, UnlinkedTypes::Object &a_object)=0
virtual ILoader * Clone()=0