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

18 lines
274 B
C++

#pragma once
#include "Scaleform/G/GFx_ASStringNodeHolder.h"
namespace Scaleform::GFx
{
class ASConstString :
public ASStringNodeHolder
{
public:
const char* ToCStr() const noexcept
{
return node->data;
}
};
static_assert(sizeof(ASConstString) == 0x08);
}