mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
data/functions.qc for some more tests
This commit is contained in:
parent
40fe52e665
commit
0d4e6a2ee8
1 changed files with 29 additions and 0 deletions
29
data/functions.qc
Normal file
29
data/functions.qc
Normal file
|
@ -0,0 +1,29 @@
|
|||
/* this is the WIP test for the parser...
|
||||
* constantly adding stuff here to see if things break
|
||||
*/
|
||||
void(string) print = #1;
|
||||
void(string,string) print2 = #1;
|
||||
void(string,string,string) print3 = #1;
|
||||
string(float) ftos = #2;
|
||||
entity() spawn = #3;
|
||||
void(entity) kill = #4;
|
||||
|
||||
.float vis;
|
||||
.entity other;
|
||||
|
||||
float(entity targ) visible = {
|
||||
return targ.vis;
|
||||
};
|
||||
|
||||
void() main = {
|
||||
local entity pawn, pawn2;
|
||||
|
||||
pawn = spawn();
|
||||
pawn2 = spawn();
|
||||
|
||||
pawn.other = pawn2;
|
||||
(pawn.other).vis = 0;
|
||||
|
||||
if (!visible(pawn.other))
|
||||
print("Yes\n");
|
||||
};
|
Loading…
Reference in a new issue