Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/B/BSScript_ILoader.h
T
2026-05-30 18:33:24 +12:00

32 lines
733 B
C++

#pragma once
#include "RE/B/BSTSmartPointer.h"
namespace RE
{
namespace BSScript
{
class IStore;
namespace UnlinkedTypes
{
class Object;
}
class __declspec(novtable) ILoader
{
public:
static constexpr auto RTTI{ RTTI::BSScript__ILoader };
static constexpr auto VTABLE{ VTABLE::BSScript__ILoader };
virtual ~ILoader() = default; // 00
// add
virtual ILoader* Clone() const = 0; // 01
virtual void SetScriptStore(const BSTSmartPointer<IStore>& a_newStore) = 0; // 02
virtual bool GetClass(const char* a_name, UnlinkedTypes::Object& a_unlinkedClass) = 0; // 03
};
static_assert(sizeof(ILoader) == 0x8);
}
}