LeviLamina
Loading...
Searching...
No Matches
SerializableVoxelShape.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace VoxelShapes {
6
7struct SerializableVoxelShape {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 SerializableVoxelShape();
20
21public:
22 // member functions
23 // NOLINTBEGIN
25
26 MCNAPI ::VoxelShapes::SerializableVoxelShape& operator=(::VoxelShapes::SerializableVoxelShape&&);
27
28 MCNAPI ::VoxelShapes::SerializableVoxelShape& operator=(::VoxelShapes::SerializableVoxelShape const&);
29
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44};
45
46} // namespace VoxelShapes
Definition SerializableVoxelShape.h:7
MCAPI void * $ctor(::VoxelShapes::SerializableVoxelShape const &)
MCAPI::VoxelShapes::SerializableVoxelShape & operator=(::VoxelShapes::SerializableVoxelShape &&)
MCAPI::VoxelShapes::SerializableVoxelShape & operator=(::VoxelShapes::SerializableVoxelShape const &)
MCAPI SerializableVoxelShape(::VoxelShapes::SerializableVoxelShape const &)
Definition Alias.h:14