Files
2026-05-21 16:04:49 +02:00

15 lines
283 B
C#

using System;
namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IEditingService
{
EditingState EditingState { get; }
event Action<EditTool> ActiveToolChanged;
void ActivateTool(EditTool tool);
void DeactivateTool();
}
}