mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 16:34:25 +02:00
13 lines
229 B
C#
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();
|
|
}
|
|
} |