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

11 lines
122 B
C#
Raw Normal View History

2024-04-21 22:38:26 +08:00
using System;
namespace CommandUndoRedo
{
public interface ICommand
{
void Execute();
void UnExecute();
}
}