summaryrefslogtreecommitdiffstats
path: root/src/render/Clouds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/Clouds.h')
-rw-r--r--src/render/Clouds.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/render/Clouds.h b/src/render/Clouds.h
new file mode 100644
index 00000000..96f04bb1
--- /dev/null
+++ b/src/render/Clouds.h
@@ -0,0 +1,20 @@
+#pragma once
+
+class CClouds
+{
+public:
+ static float &CloudRotation;
+ static uint32 &IndividualRotation;
+
+ static float &ms_cameraRoll;
+ static float &ms_horizonZ;
+ static CRGBA &ms_colourTop;
+ static CRGBA &ms_colourBottom;
+
+ static void Init(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);
+};