LeviLamina
Loading...
Searching...
No Matches
SkyboxConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class SkyboxConfig {
6public:
7 // SkyboxConfig inner types declare
8 // clang-format off
10 // clang-format on
11
12 // SkyboxConfig inner types define
14 public:
15 // SkyboxConfigSettingsV0 inner types declare
16 // clang-format off
17 struct SkyboxParameters;
18 // clang-format on
19
20 // SkyboxConfigSettingsV0 inner types define
21 struct SkyboxParameters {
22 public:
23 // SkyboxParameters inner types declare
24 // clang-format off
25 struct Description;
26 struct Lighting;
27 // clang-format on
28
29 // SkyboxParameters inner types define
30 struct Description {};
31
32 struct Lighting {};
33 };
34 };
35};
36
37// free functions
38// NOLINTBEGIN
39MCNAPI bool operator==(
42);
43// NOLINTEND
Definition SkyboxConfig.h:5
Definition SkyboxConfig.h:13