LeviLamina
Loading...
Searching...
No Matches
BlockDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // BlockDescription inner types declare
8 // clang-format off
9 struct BlockTraits;
10 // clang-format on
11
12 // BlockDescription inner types define
13 struct BlockTraits {
14 public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20 public:
21 // prevent constructor by default
24
25 public:
26 // member functions
27 // NOLINTBEGIN
28 MCFOLD ::BlockDescription::BlockTraits& operator=(::BlockDescription::BlockTraits const&);
29 // NOLINTEND
30 };
31
32public:
33 // member variables
34 // NOLINTBEGIN
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI BlockDescription();
47
49
51
52 MCAPI ::BlockDescription& operator=(::BlockDescription&&);
53
54 MCAPI ::BlockDescription& operator=(::BlockDescription const&);
55
56 MCAPI ~BlockDescription();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor();
63
64 MCAPI void* $ctor(::BlockDescription const&);
65
66 MCAPI void* $ctor(::BlockDescription&&);
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCAPI void $dtor();
73 // NOLINTEND
74};
Definition BlockDescription.h:13
Definition BlockDescription.h:5
Definition Alias.h:14