8 lines
129 B
C#
8 lines
129 B
C#
namespace HeavenStudio.Editor.Commands
|
|
{
|
|
public interface ICommand
|
|
{
|
|
void Execute();
|
|
void Undo();
|
|
}
|
|
} |