LeviLamina
Loading...
Searching...
No Matches
PersonaPieceCollectionModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace persona {
6
8public:
9 // PersonaPieceCollectionModel inner types define
10 enum class RetrievalType : int {
11 DressingRoomMainFeatured = 0,
12 FeaturedCategory = 1,
13 FeaturedSubCategory = 2,
14 ProfileScreen = 3,
15 SubCategory = 4,
16 Achievements = 5,
17 SkinPack = 6,
18 Emotes = 7,
19 Capes = 8,
20 CustomCollector = 9,
21 Unknown = 10,
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
55 // NOLINTEND
56
57public:
58 // prevent constructor by default
62
63public:
64 // virtual functions
65 // NOLINTBEGIN
66 // vIndex: 0
67 virtual ~PersonaPieceCollectionModel() = default;
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73
74 // NOLINTEND
75};
76
77} // namespace persona
Definition PersonaPieceCollectionModel.h:7
Definition Alias.h:14