Platformer.PlatformerGame.PlatformerGame C# (CSharp) Method

PlatformerGame() public method

public PlatformerGame ( ) : System
return System
        public PlatformerGame()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
            inputManager = new InputManager();

            #if WINDOWS_PHONE
            graphics.IsFullScreen = true;
            TargetElapsedTime = TimeSpan.FromTicks(333333);
            #endif

            Accelerometer.Initialize();
        }