Tool.cs 402 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Media;
  5. namespace PixiEditorDotNetCore3.Models.Tools
  6. {
  7. public abstract class Tool
  8. {
  9. public abstract BitmapPixelChanges Use(Layer layer, Coordinates startingCoords, Color color, int toolSize);
  10. public abstract ToolType ToolType { get; }
  11. public bool ExecutesItself = false;
  12. }
  13. }