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

16 lines
285 B
C++

#pragma once
#include "Scaleform/R/RefCountBase.h"
namespace Scaleform::Render
{
class __declspec(novtable) ThreadCommand :
public RefCountBase<ThreadCommand, 2> // 00
{
public:
// add
virtual void Execute() = 0; // 01
};
static_assert(sizeof(ThreadCommand) == 0x10);
}