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
54 // NOLINTEND
55
56public:
57 // prevent constructor by default
58 PersonaPiece& operator=(PersonaPiece const&);
60
61public:
62 // member functions
63 // NOLINTBEGIN
64 MCNAPI PersonaPiece();
65
66 MCNAPI ~PersonaPiece();
67 // NOLINTEND
68
69public:
70 // static variables
71 // NOLINTBEGIN
72 MCNAPI static ::PersonaPiece const& INVALID_PIECE();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCNAPI void* $ctor();
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCNAPI void $dtor();
85 // NOLINTEND
86};
Definition PersonaPiece.h:5
MCAPI void $dtor()
static MCAPI ::PersonaPiece const & INVALID_PIECE()
MCAPI PersonaPiece()
MCAPI ~PersonaPiece()
MCAPI void * $ctor()
Definition PersonaPiece.h:13
Definition Alias.h:14