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