Files
Goatgarien_BAKKA-Editor/BAKKA-Editor/Operations/IOperation.cs
T

18 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BAKKA_Editor.Operations
{
internal interface IOperation
{
string Description { get; }
void Undo();
void Redo();
}
}