9 lines
225 B
C#
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);
|
|
}
|
|
}
|