using System.Collections.Generic; namespace UnityEditor.ShaderGraph { public interface IShaderGraph { string GetShader(string name, GenerationMode mode, out List configuredTextures, List sourceAssetDependencyPaths = null); void LoadedFromDisk(); } }