mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 14:37:30 +08:00
11 lines
163 B
C++
11 lines
163 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
template <typename T>
|
|
class fwRefAwareBaseImpl : public T
|
|
{
|
|
private:
|
|
void *m_Ref; // 0x08
|
|
};
|
|
} |