Ejemplo n.º 1
0
        /// <summary>
        /// Update the control
        /// </summary>
        /// <param name="gameTime">Time since last update</param>
        public virtual void Update(GameTime gameTime)
        {
            if (this.FadeEffect != null)
            {
                FadeEffect.Apply(gameTime);
            }

            if (this.ColorEffect != null)
            {
                ColorEffect.Apply(gameTime);
            }
        }