mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 14:37:30 +08:00
14 lines
307 B
C++
14 lines
307 B
C++
#pragma once
|
|
#include "fwRefAwareBase.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
class fwExtensibleBase : public fwRefAwareBase
|
|
{
|
|
public:
|
|
void* m_ExtensionContainer; // 0x0010
|
|
void* m_ExtensibleUnk; // 0x0018
|
|
}; //Size: 0x0020
|
|
static_assert(sizeof(fwExtensibleBase) == 0x20);
|
|
}
|