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

15 lines
193 B
C++

#pragma once
namespace Scaleform
{
template <class T>
class AutoPtr
{
public:
// members
T* object; // 00
bool owner; // 08
};
static_assert(sizeof(AutoPtr<void>) == 0x10);
}