12345678910111213141516 |
- using PixiEditor.Models.Layers;
- using PixiEditor.Models.Position;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Windows.Media;
- namespace PixiEditor.Models.Tools
- {
- public abstract class Tool
- {
- public abstract BitmapPixelChanges Use(Layer layer, Coordinates[] pixels, Color color, int toolSize);
- public abstract ToolType ToolType { get; }
- public bool ExecutesItself = false;
- }
- }
|