mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
7fd23fde00
* feat(Network): add snConnectToPeerTaskData and snConnectToPeerTaskResult * feat(Script): Add script global structs * fix(CMake): Try to get includes to work * chore(Globals): try to fix linux build * chore(Globals): Actually rename all instances of TIMER
21 lines
264 B
C++
21 lines
264 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace rage
|
|
{
|
|
class snConnectToPeerTaskData
|
|
{
|
|
public:
|
|
int m_unk;
|
|
int m_reason;
|
|
uint64_t m_session_token;
|
|
};
|
|
|
|
class snConnectToPeerTaskResult
|
|
{
|
|
public:
|
|
char pad[0x10]{};
|
|
int m_peer_id;
|
|
char pad2[0x400]{};
|
|
};
|
|
} |