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