2019-05-15 14:52:37 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CDraw
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
static float &ms_fNearClipZ;
|
|
|
|
static float &ms_fFarClipZ;
|
|
|
|
static float &ms_fFOV;
|
|
|
|
public:
|
2019-05-30 19:24:47 +00:00
|
|
|
static uint8 &FadeValue;
|
|
|
|
static uint8 &FadeRed;
|
|
|
|
static uint8 &FadeGreen;
|
|
|
|
static uint8 &FadeBlue;
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
static void SetNearClipZ(float nearclip) { ms_fNearClipZ = nearclip; }
|
|
|
|
static float GetNearClipZ(void) { return ms_fNearClipZ; }
|
|
|
|
static void SetFarClipZ(float farclip) { ms_fFarClipZ = farclip; }
|
|
|
|
static float GetFarClipZ(void) { return ms_fFarClipZ; }
|
2019-05-30 11:35:13 +00:00
|
|
|
static void SetFOV(float fov);
|
2019-05-15 14:52:37 +00:00
|
|
|
static float GetFOV(void) { return ms_fFOV; }
|
|
|
|
};
|