10 lines
152 B
C#
10 lines
152 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UnityEditor.U2D.Common.Path
|
|||
|
{
|
|||
|
internal interface IUndoObject
|
|||
|
{
|
|||
|
void RegisterUndo(string name);
|
|||
|
}
|
|||
|
}
|