コード例 #1
0
        public CheckerGame()
        {
            graphics = new GraphicsDeviceManager(this);

            Content.RootDirectory = "Content";
            graphics.PreferredBackBufferHeight = WINDOW_HEIGHT;
            graphics.PreferredBackBufferWidth  = WINDOW_WIDTH;
            IsMouseVisible = true;
            bloom          = new BloomComponent(this);

            Components.Add(bloom);
        }
コード例 #2
0
        public CheckerGame()
        {
            graphics = new GraphicsDeviceManager(this);

            Content.RootDirectory = "Content";
            graphics.PreferredBackBufferHeight = WINDOW_HEIGHT;
            graphics.PreferredBackBufferWidth = WINDOW_WIDTH;
            IsMouseVisible = true;
            bloom = new BloomComponent(this);

            Components.Add(bloom);
        }