2022-08-21 01:17:32 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "fwExtension.hpp"
|
|
|
|
|
|
|
|
namespace rage
|
|
|
|
{
|
|
|
|
|
|
|
|
class fwExtensionContainer
|
2022-11-09 05:11:50 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
fwExtension *m_entry; //0x0000
|
|
|
|
fwExtensionContainer* m_next; //0x0008
|
|
|
|
}; //Size: 0x0010
|
2022-08-21 01:17:32 +08:00
|
|
|
static_assert(sizeof(fwExtensionContainer) == 0x10);
|
|
|
|
|
|
|
|
}
|