RefreshGlueProject() public static method

public static RefreshGlueProject ( bool refreshVariablesOnly ) : void
refreshVariablesOnly bool
return void
示例#1
0
        public void RefreshGlueProject()
        {
            if (ShowDebugInfo)
            {
                FlatRedBall.Debugging.Debugger.CommandLineWrite("Refresh Glue Project");
            }
            bool onlyReloadVariables = false;

            GluxManager.RefreshGlueProject(onlyReloadVariables);
        }
示例#2
0
        public void RefreshVariables()
        {
            bool onlyReloadVariables = true;

            GluxManager.RefreshGlueProject(onlyReloadVariables);
        }