FlatRedBall.Glue.GuiDisplay.NamedObjectPropertyGridDisplayer.UpdateIncludedAndExcluded C# (CSharp) Method

UpdateIncludedAndExcluded() private method

private UpdateIncludedAndExcluded ( NamedObjectSave instance ) : void
instance FlatRedBall.Glue.SaveClasses.NamedObjectSave
return void
        private void UpdateIncludedAndExcluded(NamedObjectSave instance)
        {
            ////////////////////Early Out/////////////////////////
            if (instance == null)
            {
                return;
            }
            ///////////////////End Early Out///////////////////////
            ResetToDefault();

            ExcludeAndIncludeGlueVariables(instance);
            
        }