public static void AddTool(EditorTool tool) { _tools.Add(tool); }
private void Activate(EditorTool tool) { tool.Editor = _editor; if (tool.Availbable()) { tool.Activated(); if (tool.StaysActivated) { tool.Done = false; _activeTools.Push(tool); } } }