blob: ef33030b537af58fdece061a9f3f42830e531b8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
};
|