mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
more test (need to find a way to do automated tests, I think)
This commit is contained in:
parent
8bbef35197
commit
7fce7e53ff
1 changed files with 9 additions and 0 deletions
|
@ -119,3 +119,12 @@ string(entity thething) GetEnemyName =
|
||||||
|
|
||||||
return "unknown stuff";
|
return "unknown stuff";
|
||||||
};
|
};
|
||||||
|
void () assign =
|
||||||
|
{
|
||||||
|
local float foo;
|
||||||
|
local float bar;
|
||||||
|
|
||||||
|
foo = bar;
|
||||||
|
foo = bar = 1;
|
||||||
|
foo = bar = bar + 1;
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in a new issue