NGQueue T  ClassScoreFlash API Documentation V4.6.0
A simple Queue implementation based on the generic List.
Inheritance Hierarchy

OnlineSystem Object
  OnlineSystem.Collections.Generic List T 
    NarayanaGames.Common NGQueue T 

Namespace: NarayanaGames.Common
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax

public class NGQueue<T> : List<T>
Type Parameters

T
whatever you want to put into your queue
Remarks

While .NET/Mono does have its own generic Queue, it resides in System.dll which you usually don't want to include in your builds (it adds quite a bit of "weight"). To prevent having a dependency on System.dll, this class was implemented.
See Also