WindowsGame1.Game1.Game1 C# (CSharp) Метод

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

public Game1 ( ) : System
Результат System
        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);

            level = new Level(Content);

            graphics.PreferredBackBufferWidth = Level.windowWidth;
            graphics.PreferredBackBufferHeight = Level.windowHeight;

            Content.RootDirectory = "Content";

            this.IsMouseVisible = true;
        }