LeviLamina
Loading...
Searching...
No Matches
SkyboxConfigSettingsV0.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SkyboxConfig {
6
8public:
9 // SkyboxConfigSettingsV0 inner types declare
10 // clang-format off
11 struct SkyboxParameters;
12 // clang-format on
13
14 // SkyboxConfigSettingsV0 inner types define
15 struct SkyboxParameters {
16 public:
17 // SkyboxParameters inner types declare
18 // clang-format off
19 struct Description;
20 struct Lighting;
21 // clang-format on
22
23 // SkyboxParameters inner types define
24 struct Description {};
25
26 struct Lighting {};
27 };
28};
29
30} // namespace SkyboxConfig
Definition SkyboxConfigSettingsV0.h:15
Definition SkyboxConfigSettingsV0.h:7