/// <summary> /// Draw all the items /// </summary> /// <param name="screen"></param> /// <param name="gameTime"></param> public void Draw(IScreen screen, GameClock gameTime) { Layout.Draw(screen, gameTime); }
public bool RemoveItem(IScreenItem item) { return(Layout.RemoveItem(item)); }
/// <summary> /// Draw the background of all the items /// </summary> /// <param name="screen"></param> /// <param name="gameTime"></param> public void DrawBackground(IScreen screen, GameClock gameTime) { Layout.DrawBackground(screen, gameTime); }