diff --git a/Shared/Scene.cs b/Shared/Scene.cs index 141550a..fe8aa40 100644 --- a/Shared/Scene.cs +++ b/Shared/Scene.cs @@ -73,12 +73,12 @@ namespace SemiColinGames { spriteBatch.Begin( SpriteSortMode.Deferred, null, SamplerState.LinearWrap, null, null, null, transform); - // Draw foreground tiles. - world.Draw(spriteBatch); - // Draw player. player.Draw(spriteBatch); + // Draw foreground tiles. + world.Draw(spriteBatch); + // Aaaaand we're done. spriteBatch.End();