mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-28 20:14:15 +01:00
17 lines
484 B
C
17 lines
484 B
C
|
#pragma once
|
||
|
|
||
|
class CDraw
|
||
|
{
|
||
|
private:
|
||
|
static float &ms_fNearClipZ;
|
||
|
static float &ms_fFarClipZ;
|
||
|
static float &ms_fFOV;
|
||
|
public:
|
||
|
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; }
|
||
|
static void SetFOV(float fov) { ms_fFOV = fov; }
|
||
|
static float GetFOV(void) { return ms_fFOV; }
|
||
|
};
|