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

16 lines
200 B
C++

#pragma once
#include "RE/B/BSTArray.h"
namespace RE
{
class TESFile;
class TESFileArray :
public BSStaticArray<TESFile*> // 00
{
public:
};
static_assert(sizeof(TESFileArray) == 0x10);
}