mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
13 lines
161 B
R
13 lines
161 B
R
|
entity self;
|
||
|
.float heat;
|
||
|
.entity ent;
|
||
|
.entity own;
|
||
|
entity () blah;
|
||
|
void (float x) foo =
|
||
|
{
|
||
|
if (self.heat = 0)
|
||
|
return;
|
||
|
if ((x = self.heat && 0))
|
||
|
return;
|
||
|
};
|