LeviLamina
Loading...
Searching...
No Matches
BodySize.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace persona { struct SizeInfo; }
8// clang-format on
9
10namespace persona {
11
12class BodySize {
13public:
14 // BodySize inner types define
15 enum class Type : uint64 {
16 Smaller = 0,
17 Small = 1,
18 Medium = 2,
19 Tall = 3,
20 Count = 4,
21 Unknown = 5,
22 };
23
24public:
25 // static variables
26 // NOLINTBEGIN
27 MCAPI static ::std::unordered_map<::persona::BodySize::Type, ::persona::SizeInfo> const& mInfoList();
28 // NOLINTEND
29};
30
31} // namespace persona
Definition BodySize.h:12