AssetBundleGraph.IntegratedGUIBundleConfigurator.ValidateBundleNameTemplate C# (CSharp) Method

ValidateBundleNameTemplate() public static method

public static ValidateBundleNameTemplate ( string bundleNameTemplate, System.Action NullOrEmpty ) : void
bundleNameTemplate string
NullOrEmpty System.Action
return void
        public static void ValidateBundleNameTemplate(string bundleNameTemplate, Action NullOrEmpty)
        {
            if (string.IsNullOrEmpty(bundleNameTemplate)){
                NullOrEmpty();
            }
        }