Example #1
0
 public void Render(TimeInfo time)
 {
     frameCounter.FrameRendering(time);
     graphics.BeginFrame();
     graphics.ClearScreen(currentScreen.BackgroundColor);
     currentScreen.Render(time);
     graphics.EndFrame();
 }