1using UnityEngine; 2 3namespace UnityEditor.U2D.Common.Path 4{ 5 internal interface IUndoObject 6 { 7 void RegisterUndo(string name); 8 } 9}