feat(Core/Data): Added Session Type info

This commit is contained in:
Yimura 2021-08-05 01:28:32 +02:00
parent 417a5d6efc
commit 5eee09f02d
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -0,0 +1,20 @@
#pragma once
#include "core/enums.hpp"
struct SessionType {
eSessionType id;
const char name[22];
};
const SessionType sessions[] = {
{ eSessionType::JOIN_PUBLIC, "Join Public Session" },
{ eSessionType::NEW_PUBLIC, "New Public Session" },
{ eSessionType::CLOSED_CREW, "Closed Crew Session" },
{ eSessionType::CREW, "Crew Session" },
{ eSessionType::CLOSED_FRIENDS, "Closed Friend Session" },
{ eSessionType::FIND_FRIEND, "Find Friend Session" },
{ eSessionType::SOLO, "Solo Session" },
{ eSessionType::INVITE_ONLY, "Invite Only Session" },
{ eSessionType::JOIN_CREW, "Join Crew Session" },
{ eSessionType::LEAVE_ONLINE, "Leave GTA Online" }
};