Table of Contents

Struct EntityQueryEnumerator

Namespace
Frent.Systems
Assembly
Frent.dll

An enumerator that can be used to enumerate all Entity instances in a Frent.Systems.Query.

public ref struct EntityQueryEnumerator
Inherited Members

Properties

Current

The current tuple of component references.

public Entity Current { get; }

Property Value

Entity

Methods

Dispose()

Indicates to the world that this enumeration is finished; the world might allow structual changes after this.

public void Dispose()

GetEnumerator()

Gets the enumerator over a query.

public EntityQueryEnumerator GetEnumerator()

Returns

EntityQueryEnumerator

MoveNext()

Moves to the next component tuple in this enumeration.

public bool MoveNext()

Returns

bool

true when its possible to enumerate further, otherwise false.