feat(Core/Data): Added Session Type info
This commit is contained in:
parent
417a5d6efc
commit
5eee09f02d
20
BigBaseV2/src/core/data/session_types.hpp
Normal file
20
BigBaseV2/src/core/data/session_types.hpp
Normal 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" }
|
||||
};
|
Reference in New Issue
Block a user