mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-22 19:51:16 +00:00
- delete set_int_floorz and set_int_ceilingz.
This commit is contained in:
parent
81456e4d33
commit
0655db77b9
1 changed files with 0 additions and 5 deletions
|
@ -231,8 +231,6 @@ struct sectortype
|
||||||
const double floorz, ceilingz;
|
const double floorz, ceilingz;
|
||||||
sectortype(double a = 0, double b = 0) : ceilingz(a), floorz(b) {}
|
sectortype(double a = 0, double b = 0) : ceilingz(a), floorz(b) {}
|
||||||
|
|
||||||
void set_int_ceilingz(int cc, bool temp = false) {}
|
|
||||||
void set_int_floorz(int cc, bool temp = false) {}
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
// Do not change directly!
|
// Do not change directly!
|
||||||
|
@ -243,9 +241,6 @@ struct sectortype
|
||||||
void addceilingz(double cc, bool temp = false);
|
void addceilingz(double cc, bool temp = false);
|
||||||
void addfloorz(double cc, bool temp = false);
|
void addfloorz(double cc, bool temp = false);
|
||||||
|
|
||||||
void set_int_ceilingz(int cc, bool temp = false) { setceilingz(cc * zinttoworld, temp); }
|
|
||||||
void set_int_floorz(int cc, bool temp = false) { setfloorz(cc * zinttoworld, temp); }
|
|
||||||
|
|
||||||
void setzfrommap(int c, int f)
|
void setzfrommap(int c, int f)
|
||||||
{
|
{
|
||||||
ceilingz = c * zmaptoworld;
|
ceilingz = c * zmaptoworld;
|
||||||
|
|
Loading…
Reference in a new issue