LeviLamina
Loading...
Searching...
No Matches
BlockSet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct BlockSet {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 BlockSet& operator=(BlockSet const&);
16 BlockSet(BlockSet const&);
17 BlockSet();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI ~BlockSet();
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28 MCFOLD void $dtor();
29 // NOLINTEND
30};
Definition BlockSet.h:5
Definition Alias.h:14