UniversalViewer/Assets/Scripts/RuntimeGizmo/Interfaces/ICommand.cs

11 lines
122 B
C#

using System;
namespace CommandUndoRedo
{
public interface ICommand
{
void Execute();
void UnExecute();
}
}