mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 22:47:31 +08:00
12 lines
159 B
C++
12 lines
159 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
class atDelegate
|
|
{
|
|
public:
|
|
void* m_Object;
|
|
void* m_Callback;
|
|
};
|
|
static_assert(sizeof(atDelegate) == 0x10);
|
|
} |