Platformer.PlatformerGame.PlatformerGame C# (CSharp) Метод

PlatformerGame() публичный Метод

public PlatformerGame ( ) : System
Результат 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();
        }