89d2428864
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
13 lines
155 B
C++
13 lines
155 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
|
|
template <typename T>
|
|
class fwRefAwareBaseImpl : public T
|
|
{
|
|
private:
|
|
void *m_ref; // 0x08
|
|
};
|
|
|
|
} |