HeavenStudioPlus/Assets/Scripts/LevelEditor/Commands/IAction.cs

13 lines
229 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace HeavenStudio.Editor.Commands
{
public interface IAction
{
void Execute();
void Undo();
void Redo();
}
}