forked from themrdemonized/xray-monolith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathR_Backend_hemi.h
More file actions
34 lines (26 loc) · 975 Bytes
/
R_Backend_hemi.h
File metadata and controls
34 lines (26 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef r_backend_hemiH
#define r_backend_hemiH
#pragma once
class ECORE_API R_hemi
{
public:
R_constant* c_pos_faces;
R_constant* c_neg_faces;
R_constant* c_material;
R_constant* c_hotness; //--DSR-- HeatVision
R_constant* c_glowing; //--DSR-- SilencerOverheat
public:
R_hemi();
void unmap();
void set_c_pos_faces(R_constant* C) { c_pos_faces = C; }
void set_c_neg_faces(R_constant* C) { c_neg_faces = C; }
void set_c_material(R_constant* C) { c_material = C; }
void set_c_hotness(R_constant* C) { c_hotness = C; } //--DSR-- HeatVision
void set_c_glowing(R_constant* C) { c_glowing = C; } //--DSR-- SilencerOverheat
void set_pos_faces(float posx, float posy, float posz);
void set_neg_faces(float negx, float negy, float negz);
void set_material(float x, float y, float z, float w);
void set_hotness(float x, float y, float z, float w); //--DSR-- HeatVision
void set_glowing(float x, float y, float z, float w); //--DSR-- SilencerOverheat
};
#endif