Asteroids.Classes.KeyBindingsContent.KeyBindingsContent C# (CSharp) Method

KeyBindingsContent() public method

public KeyBindingsContent ( GraphicsDeviceManager graphics, Microsoft.Xna.Framework.Content.ContentManager Content ) : System
graphics GraphicsDeviceManager
Content Microsoft.Xna.Framework.Content.ContentManager
return System
        public KeyBindingsContent(GraphicsDeviceManager graphics, ContentManager Content)
        {
            this.graphics = graphics;
            this.Content = Content;
            scale = graphics.GraphicsDevice.Viewport.Width / 1600.0f;
            backKeyPress = false;
            Initialize();
            Load();
        }