ReadonlyToolUtility.cs 328 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using PixiEditor.Models.Position;
  3. using PixiEditor.Models.Tools;
  4. namespace PixiEditor.Models.Controllers
  5. {
  6. public class ReadonlyToolUtility
  7. {
  8. public void ExecuteTool(List<Coordinates> mouseMove, ReadonlyTool tool)
  9. {
  10. tool.Use(mouseMove);
  11. }
  12. }
  13. }