mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-03 16:32:57 +00:00
add another test that we just didn't have anywhere else yet
This commit is contained in:
parent
6149f6a1d0
commit
49f4fedecf
2 changed files with 19 additions and 0 deletions
13
tests/fieldfuncs.qc
Normal file
13
tests/fieldfuncs.qc
Normal file
|
@ -0,0 +1,13 @@
|
|||
.float field;
|
||||
|
||||
.float getfield() {
|
||||
return field;
|
||||
}
|
||||
|
||||
void() main = {
|
||||
entity e = spawn();
|
||||
e.field = 42;
|
||||
print(ftos(e.(getfield())), "\n");
|
||||
.float memptr = getfield();
|
||||
print(ftos(e.memptr), "\n");
|
||||
}
|
6
tests/fieldfuncs.tmpl
Normal file
6
tests/fieldfuncs.tmpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
I: fieldfuncs.qc
|
||||
D: test fields with functions
|
||||
T: -compile
|
||||
C: -std=fte
|
||||
M: 42
|
||||
M: 42
|
Loading…
Reference in a new issue