using PixiEditor.Helpers; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PixiEditorDotNetCore3.Models.Tools { class ToolManager : NotifyableObject { private ToolType _activeTool; public ToolType ActiveTool { get { return _activeTool; } set { if (_activeTool != value) { _activeTool = value; RaisePropertyChanged("ActiveTool"); } } } } }