forked from BilalY/Rasagar
13 lines
220 B
C#
13 lines
220 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityEditor.ShaderGraph
|
||
|
{
|
||
|
struct ParentGroupChange
|
||
|
{
|
||
|
public IGroupItem groupItem;
|
||
|
public GroupData oldGroup;
|
||
|
public GroupData newGroup;
|
||
|
}
|
||
|
}
|