docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
namespace Scaleform
|
||||
{
|
||||
template <class T>
|
||||
class AutoPtr
|
||||
{
|
||||
public:
|
||||
// members
|
||||
T* object; // 00
|
||||
bool owner; // 08
|
||||
};
|
||||
static_assert(sizeof(AutoPtr<void>) == 0x10);
|
||||
}
|
||||
Reference in New Issue
Block a user