mirror of
https://github.com/halpz/re3.git
synced 2025-07-23 10:29:44 +00:00
first commit
This commit is contained in:
16
src/render/Draw.h
Normal file
16
src/render/Draw.h
Normal file
@ -0,0 +1,16 @@
|
||||
#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; }
|
||||
};
|
Reference in New Issue
Block a user