Editor/ShaderGraphPlus/Nodes/Core/IWarningNode.cs

Interface for editor shader graph nodes that can report warnings. It declares a single method GetWarnings which returns a list of warning strings.

namespace ShaderGraphPlus;

public interface IWarningNode
{
	List<string> GetWarnings();
}