Asteroids.Background.Background C# (CSharp) Method

Background() public method

public Background ( GraphicsDevice graphicsDevice, Microsoft.Xna.Framework.Content.ContentManager content ) : System
graphicsDevice GraphicsDevice
content Microsoft.Xna.Framework.Content.ContentManager
return System
        public Background(GraphicsDevice graphicsDevice, ContentManager content)
        {
            this.graphicsManager = graphicsDevice;
            this.content = content;
            LoadStars();
            LoadPlanets();
        }