Mk0.GUI.Banner/Mk0.GUI.Banner/Queue.cs

15 lines
244 B
C#

using System.Collections.Generic;
namespace Mk0.GUI.Banner
{
public class Queue
{
internal readonly Queue<BannerObject> bol;
internal Queue()
{
bol = new Queue<BannerObject>();
}
}
}