FBClient.Controls.GameState.Show C# (CSharp) Method

Show() protected method

protected Show ( ) : void
return void
        protected virtual void Show()
        {
            Visible = true;
            Enabled = true;

            foreach (GameComponent component in _childComponents)
            {
                component.Enabled = true;
                var gameComponent = component as DrawableGameComponent;
                if (gameComponent != null)
                    gameComponent.Visible = true;
            }
        }