summaryrefslogtreecommitdiffstats
path: root/src/render/Draw.h
blob: 62fe5193f79471655563e6536e7cf89078a31890 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
};