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