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

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

public Game1 ( ) : System
Результат System
        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);
            //graphics.IsFullScreen = true;
            graphics.PreferredBackBufferHeight = 500;
            graphics.PreferredBackBufferWidth = 900;
            Content.RootDirectory = "Content";
            r = new Random();
            p = new Player();
            hud = new HUD();
            numOfAsteroids = 5;
        }