MoveNubShape.cs 785 B

123456789101112131415161718
  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. namespace PaintDotNet.Measurement
  10. {
  11. public enum MoveNubShape
  12. {
  13. Square,
  14. Compass,
  15. Circle,
  16. }
  17. }