89d2428864
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
17 lines
279 B
C++
17 lines
279 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
|
|
class pgBase
|
|
{
|
|
public:
|
|
virtual ~pgBase() = default;
|
|
virtual int return_zero() = 0;
|
|
virtual void error() = 0;
|
|
|
|
void *unk_0000; // 0x0000
|
|
}; //Size: 0x0008
|
|
static_assert(sizeof(pgBase) == 0x10);
|
|
|
|
} |