示例#1
0
文件: Engine.cs 项目: Jebeli/Tiles
 public void Render(TimeInfo time)
 {
     frameCounter.FrameRendering(time);
     graphics.BeginFrame();
     graphics.ClearScreen(currentScreen.BackgroundColor);
     currentScreen.Render(time);
     graphics.EndFrame();
 }