IBrushConfig.cs 975 B

123456789101112131415161718192021222324252627
  1. /////////////////////////////////////////////////////////////////////////////////
  2. // Paint.NET //
  3. // Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. //
  4. // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. //
  5. // See src/Resources/Files/License.txt for full licensing and attribution //
  6. // details. //
  7. // . //
  8. /////////////////////////////////////////////////////////////////////////////////
  9. using PaintDotNet.Measurement.ObjInfo;
  10. using System;
  11. namespace PaintDotNet.Measurement.Interface
  12. {
  13. internal interface IBrushConfig
  14. {
  15. event EventHandler BrushInfoChanged;
  16. BrushInfo BrushInfo
  17. {
  18. get;
  19. set;
  20. }
  21. void PerformBrushChanged();
  22. }
  23. }