LeviLamina
Loading...
Searching...
No Matches
ProfileType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace persona {
6
7enum class ProfileType : int {
8 Legacy = 0,
9 Persona1 = 1,
10 Persona2 = 2,
11 Persona3 = 3,
12 Persona4 = 4,
13 Persona5 = 5,
14 Count = 6,
15 NotFound = 7,
16 Multiplayer = 8,
17 Temporary = 9,
18};
19
20}