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

26 lines
438 B
C++

#pragma once
#include "RE/B/BSFixedString.h"
#include "RE/N/NiPointer.h"
namespace RE
{
class NiTexture;
namespace BSGraphics
{
class Texture;
}
class ImageSpaceLUTData
{
public:
// members
BSFixedString filename[4]; // 00
float weight[4]; // 20
NiPointer<NiTexture> niTexture[4]; // 30
BSGraphics::Texture* texture[4]; // 50
};
static_assert(sizeof(ImageSpaceLUTData) == 0x70);
}