diff --git a/BigBaseV2/src/core/data/session_types.hpp b/BigBaseV2/src/core/data/session_types.hpp new file mode 100644 index 00000000..141aca34 --- /dev/null +++ b/BigBaseV2/src/core/data/session_types.hpp @@ -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" } +}; \ No newline at end of file