Fixed BlockLinesIterator class definition in ZScript

https://forum.zdoom.org/viewtopic.php?t=57982
This commit is contained in:
alexey.lysiuk 2017-09-26 10:54:55 +03:00
parent 48f9e53580
commit dfe05f10b7

View file

@ -449,8 +449,8 @@ class BlockLinesIterator : Object native
native Vector3 position;
native int portalflags;
native static BlockThingsIterator Create(Actor origin, double checkradius = -1);
native static BlockThingsIterator CreateFromPos(Vector3 pos, double checkh, double checkradius, Sector sec = null);
native static BlockLinesIterator Create(Actor origin, double checkradius = -1);
native static BlockLinesIterator CreateFromPos(Vector3 pos, double checkh, double checkradius, Sector sec = null);
native bool Next();
}