Exemple #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GuiBackground"/> class.
        /// </summary>
        public GuiSize(BlackbirdGame game)
        {
            this.Game = game;

            Width  = new GuiNullValue <int>(Game);
            Height = new GuiNullValue <int>(Game);
        }
Exemple #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GuiBackground"/> class.
        /// </summary>
        public GuiBackground(BlackbirdGame game)
        {
            this.Game = game;

            Color  = new GuiNullValue <Color>(Game);
            Image  = new GuiNullValue <string>(Game);
            Repeat = new GuiNullValue <GuiRepeatStyle>(Game);
        }