mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-23 06:57:34 +08:00
17 lines
246 B
C++
17 lines
246 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);
|
|
|
|
} |