mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
14 lines
210 B
C++
14 lines
210 B
C++
|
#pragma once
|
||
|
#include "rlGamerHandle.hpp"
|
||
|
#include "rlSessionInfo.hpp"
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
class rlSessionByGamerTaskResult
|
||
|
{
|
||
|
public:
|
||
|
rlGamerHandle m_gamer_handle{ 0 };
|
||
|
rlSessionInfo m_session_info;
|
||
|
};
|
||
|
}
|