mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
add rlSessionByGamerTaskResult and restore default ctor for rlGamerHandle (#47)
This commit is contained in:
parent
cf47447f25
commit
41246edf09
@ -11,6 +11,8 @@ namespace rage
|
|||||||
uint64_t m_rockstar_id;
|
uint64_t m_rockstar_id;
|
||||||
uint64_t m_unk;
|
uint64_t m_unk;
|
||||||
|
|
||||||
|
inline rlGamerHandle() = default;
|
||||||
|
|
||||||
inline rlGamerHandle(uint64_t rockstar_id) :
|
inline rlGamerHandle(uint64_t rockstar_id) :
|
||||||
m_rockstar_id(rockstar_id),
|
m_rockstar_id(rockstar_id),
|
||||||
m_unk(3)
|
m_unk(3)
|
||||||
|
13
rage/rlSessionByGamerTaskResult.hpp
Normal file
13
rage/rlSessionByGamerTaskResult.hpp
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "rlGamerHandle.hpp"
|
||||||
|
#include "rlSessionInfo.hpp"
|
||||||
|
|
||||||
|
namespace rage
|
||||||
|
{
|
||||||
|
class rlSessionByGamerTaskResult
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
rlGamerHandle m_gamer_handle{ 0 };
|
||||||
|
rlSessionInfo m_session_info;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user