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