2
0

Tool.cs 447 B

123456789101112131415
  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 bool IsShapeCreating = false;
  10. public abstract BitmapPixelChanges Use(Layer layer, Coordinates startingCoords, Color color, int toolSize);
  11. public abstract ToolType ToolType { get; }
  12. public bool ExecutesItself = false;
  13. }
  14. }