15 lines
283 B
C#
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();
|
|
}
|
|
} |