Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 public bool RemoveItem(IScreenItem item)
 {
     return(Layout.RemoveItem(item));
 }
Exemplo n.º 3
0
 /// <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);
 }