LeviLamina
Loading...
Searching...
No Matches
PersonaPiece.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // PersonaPiece inner types declare
8 // clang-format off
9 struct FilePaths;
10 // clang-format on
11
12 // PersonaPiece inner types define
13 struct FilePaths {
14 public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 FilePaths& operator=(FilePaths const&);
26 FilePaths(FilePaths const&);
27 FilePaths();
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
55 // NOLINTEND
56
57public:
58 // prevent constructor by default
59 PersonaPiece& operator=(PersonaPiece const&);
61
62public:
63 // member functions
64 // NOLINTBEGIN
65 MCAPI PersonaPiece();
66
67 MCAPI ~PersonaPiece();
68 // NOLINTEND
69
70public:
71 // static variables
72 // NOLINTBEGIN
73 MCAPI static ::PersonaPiece const& INVALID_PIECE();
74 // NOLINTEND
75
76public:
77 // constructor thunks
78 // NOLINTBEGIN
79 MCAPI void* $ctor();
80 // NOLINTEND
81
82public:
83 // destructor thunk
84 // NOLINTBEGIN
85 MCAPI void $dtor();
86 // NOLINTEND
87};
Definition PersonaPiece.h:5
Definition PersonaPiece.h:13
Definition Alias.h:14