wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/EditablePath/IUndoObject.cs
2025-01-02 14:50:41 +08:00

10 lines
152 B
C#

using UnityEngine;
namespace UnityEditor.U2D.Common.Path
{
internal interface IUndoObject
{
void RegisterUndo(string name);
}
}