2021-09-09 20:42:29 -04:00

9 lines
225 B
C#

namespace UnityEditor.ShaderGraph
{
interface IGraphDataAction
{
// Takes in GraphData, performs some modification on it, and then returns it
GraphData MutateGraphData(GraphData initialState);
}
}