Stand/Stand/grcTexture.hpp
2024-10-16 11:20:42 +08:00

23 lines
315 B
C++

#pragma once
#include "struct_base.hpp"
#include "pgBase.hpp"
namespace rage
{
struct grcTexture : public pgBase
{
INIT_PAD(pgBase, 0x28) const char* name;
};
static_assert(sizeof(grcTexture) == 0x30);
struct grcTexturePC : public grcTexture
{
};
struct grcTextureDX11 : public grcTexturePC
{
};
}