// get { return curUpdateLQIs.Where(l=>l.LayoutingTries>2 || l.DiscardCount > 0).ToArray(); }
// }
public LayoutingQueueItem currentLQI = null;
+ #else
+ public List<LQIList> LQIs = null;//still create the var for CrowIDE
#endif
public void Update(){
if (mouseRepeatCount > 0) {
#endif
}
}
- #if DEBUG_LAYOUTING
public class LQIList : List<LayoutingQueueItem>{
+ #if DEBUG_LAYOUTING
public List<LayoutingQueueItem> GetRootLQIs(){
return this.Where (lqi => lqi.wasTriggeredBy == null).ToList ();
}
+ #endif
}
- #endif
}