Example #1
0
 public abstract void UpdateZones(RenderedLayout Layout);
Example #2
0
 public RenderedLayout ActivateNextZone()
 {
     activeLayout = List[(List.IndexOf(ActiveLayout.Base) + 1) % List.Count].Render(Parent: ParentLayout);
     return(activeLayout);
 }