- there was something missing...

This commit is contained in:
Christoph Oelckers 2017-03-09 17:44:00 +01:00
parent 3113faedcf
commit f8391ce97e

View file

@ -443,13 +443,13 @@ struct Sector native play
class SectorTagIterator : Object native class SectorTagIterator : Object native
{ {
native static SectorTagIterator(int tag, line defline = null); native static SectorTagIterator Create(int tag, line defline = null);
native int Next(); native int Next();
native int NextCompat(bool compat, int secnum); native int NextCompat(bool compat, int secnum);
} }
class LineIdIterator : Object native class LineIdIterator : Object native
{ {
native static LineIdIterator(int tag); native static LineIdIterator Create(int tag);
native int Next(); native int Next();
} }