summaryrefslogtreecommitdiffstats
path: root/src/renderer/Clouds.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-07-17 23:05:51 +0200
committerSergeanur <s.anureev@yandex.ua>2021-07-17 23:05:51 +0200
commit7a034142c99e577b0339aefd9599cb7f373c495e (patch)
tree722b1946daf2b24374c7fcfab0face06af5eefba /src/renderer/Clouds.h
parentMerge remote-tracking branch 'origin/miami' into lcs (diff)
parentrender -> renderer (original name) (diff)
downloadre3-7a034142c99e577b0339aefd9599cb7f373c495e.tar
re3-7a034142c99e577b0339aefd9599cb7f373c495e.tar.gz
re3-7a034142c99e577b0339aefd9599cb7f373c495e.tar.bz2
re3-7a034142c99e577b0339aefd9599cb7f373c495e.tar.lz
re3-7a034142c99e577b0339aefd9599cb7f373c495e.tar.xz
re3-7a034142c99e577b0339aefd9599cb7f373c495e.tar.zst
re3-7a034142c99e577b0339aefd9599cb7f373c495e.zip
Diffstat (limited to 'src/renderer/Clouds.h')
-rw-r--r--src/renderer/Clouds.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/renderer/Clouds.h b/src/renderer/Clouds.h
new file mode 100644
index 00000000..ef33030b
--- /dev/null
+++ b/src/renderer/Clouds.h
@@ -0,0 +1,23 @@
+#pragma once
+
+class CClouds
+{
+public:
+ static float CloudRotation;
+ static uint32 IndividualRotation;
+
+ static float ms_cameraRoll;
+ static float ms_horizonZ;
+ static float ms_HorizonTilt;
+ static CRGBA ms_colourTop;
+ static CRGBA ms_colourBottom;
+ static CRGBA ms_colourBkGrd;
+
+ static void Init(void);
+ static void Shutdown(void);
+ static void Update(void);
+ static void Render(void);
+ static void RenderBackground(int16 topred, int16 topgreen, int16 topblue,
+ int16 botred, int16 botgreen, int16 botblue, int16 alpha);
+ static void RenderHorizon(void);
+};