Ejemplo n.º 1
0
 // Renders the world.
 public void Render()
 {
     // Gives the background the classic Win95 feel.
     this.window.Clear(SplashKit.ColorTeal());
     foreach (Sprite spr in this.sprites)
     {
         spr.Render();
     }
     // Must call refresh to actually render our canvas to screen.
     this.window.Refresh();
 }