2019-05-15 10:52:37 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CClouds
|
|
|
|
{
|
|
|
|
public:
|
2020-04-17 00:01:54 -04:00
|
|
|
static float CloudRotation;
|
|
|
|
static uint32 IndividualRotation;
|
2019-05-15 10:52:37 -04:00
|
|
|
|
2020-04-17 00:01:54 -04:00
|
|
|
static float ms_cameraRoll;
|
|
|
|
static float ms_horizonZ;
|
|
|
|
static CRGBA ms_colourTop;
|
|
|
|
static CRGBA ms_colourBottom;
|
2019-05-15 10:52:37 -04:00
|
|
|
|
|
|
|
static void Init(void);
|
2019-07-06 06:27:21 -04:00
|
|
|
static void Shutdown(void);
|
2019-05-15 10:52:37 -04:00
|
|
|
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);
|
|
|
|
};
|