LeviLamina
Loading...
Searching...
No Matches
BiomeComponentFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // BiomeComponentFactory inner types define
8 enum class FactoryScope : int {
9 Client = 0,
10 Server = 1,
11 };
12
13 enum class ComponentScope : int {
14 Client = 0,
15 Server = 1,
16 ClientAndServer = 2,
17 };
18
19public:
20 // member variables
21 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
35
36public:
37 // member functions
38 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCAPI void $dtor();
46 // NOLINTEND
47};
Definition BiomeComponentFactory.h:5
Definition Alias.h:14