arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.common@dd402daace1b/Path/Editor/EditablePath/IUndoObject.cs

10 lines
152 B
C#
Raw Permalink Normal View History

2025-09-25 22:01:28 +02:00
using UnityEngine;
namespace UnityEditor.U2D.Common.Path
{
internal interface IUndoObject
{
void RegisterUndo(string name);
}
}