mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
13 lines
158 B
C++
13 lines
158 B
C++
|
#pragma once
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
|
||
|
class datBase
|
||
|
{
|
||
|
public:
|
||
|
virtual ~datBase() = default;
|
||
|
}; //Size: 0x0008
|
||
|
static_assert(sizeof(datBase) == 0x8);
|
||
|
|
||
|
}
|