wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/EditablePath/IUndoObject.cs
2024-12-30 12:56:27 +08:00

10 lines
152 B
C#

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