10 lines
131 B
Plaintext
10 lines
131 B
Plaintext
|
#pragma once
|
||
|
|
||
|
enum SkyRenderingMode : s32 {
|
||
|
Textures = 0x0,
|
||
|
Stars = 0x1,
|
||
|
};
|
||
|
|
||
|
struct SkyMode {
|
||
|
SkyRenderingMode mode;
|
||
|
};
|