WhichUserColor.cs 215 B

1234567891011
  1. namespace PaintDotNet
  2. {
  3. /// <summary>
  4. /// An enumeration to allow selection between Primary and Secondary
  5. /// </summary>
  6. internal enum WhichUserColor
  7. {
  8. Primary,
  9. Secondary
  10. }
  11. }