C# Class Files.AudioLogic.Coroutine

C# implementation of a Coroutine, from: http://www.gamedev.net/blog/1612/entry-2259253-coroutines-building-a-framework-in-c/
Afficher le fichier Open project: Afr0Games/Project-Dollhouse Class Usage Examples

Méthodes publiques

Свойство Type Description
can_move_next bool
is_complete bool

Méthodes publiques

Méthode Description
Coroutine ( ) : System
YieldComplete ( object return_value = null ) : object
YieldFrom ( Coroutine coroutine, object sub_input = null ) : object
next ( object in_value = null ) : object
process ( ) : IEnumerable

Method Details

Coroutine() public méthode

public Coroutine ( ) : System
Résultat System

YieldComplete() public méthode

public YieldComplete ( object return_value = null ) : object
return_value object
Résultat object

YieldFrom() public méthode

public YieldFrom ( Coroutine coroutine, object sub_input = null ) : object
coroutine Coroutine
sub_input object
Résultat object

next() public méthode

public next ( object in_value = null ) : object
in_value object
Résultat object

process() public abstract méthode

public abstract process ( ) : IEnumerable
Résultat IEnumerable

Property Details

can_move_next public_oe property

public bool can_move_next
Résultat bool

is_complete public_oe property

public bool is_complete
Résultat bool