void interfaceThread()
{
CrowInterface = new Interface ();
- Interface.CurrentInterface = CrowInterface;
CrowInterface.Quit += Quit;
CrowInterface.MouseCursorChanged += CrowInterface_MouseCursorChanged;
Interface.LoadCursors ();
}
public Interface(){
+ LayoutingQueue = new Queue<LayoutingQueueItem>();
Interface.CurrentInterface = this;
}
#endregion
public const int MaxLayoutingTries = 50;
#endregion
- public Queue<LayoutingQueueItem> LayoutingQueue = new Queue<LayoutingQueueItem>();
+ public Queue<LayoutingQueueItem> LayoutingQueue;
public Queue<GraphicObject> GraphicUpdateQueue = new Queue<GraphicObject>();
public static void RegisterForGraphicUpdate(GraphicObject g)