RaceGame.Map.DrawForeground C# (CSharp) Method

DrawForeground() public method

public DrawForeground ( SpriteBatch spriteBatch ) : void
spriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
        public void DrawForeground(SpriteBatch spriteBatch)
        {
            spriteBatch.Draw(ForegroundImage, new Rectangle(0, 0, ForegroundImage.Bounds.Width, ForegroundImage.Bounds.Height), Color.White);
            clouds.Draw(spriteBatch);
        }