LeviLamina
Loading...
Searching...
No Matches
CustomBiome.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct CustomBiome {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14public:
15 // prevent constructor by default
16 CustomBiome& operator=(CustomBiome const&);
17 CustomBiome();
18
19#else // LL_PLAT_C
20public:
21 // prevent constructor by default
22 CustomBiome& operator=(CustomBiome const&);
23 CustomBiome(CustomBiome const&);
24 CustomBiome();
25
26#endif
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_S
31 MCNAPI CustomBiome(::CustomBiome const&);
32#endif
33
34 MCNAPI ~CustomBiome();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40#ifdef LL_PLAT_S
41 MCNAPI void* $ctor(::CustomBiome const&);
42#endif
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50};
MCAPI ~CustomBiome()
MCAPI void $dtor()
Definition Alias.h:14