ColorEventArgs.cs 539 B

123456789101112131415161718192021222324252627
  1. using SmartCoalApplication.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SmartCoalApplication.PluginAssemblys
  8. {
  9. [Serializable]
  10. internal class ColorEventArgs : EventArgs
  11. {
  12. private ColorBgra color;
  13. public ColorBgra Color
  14. {
  15. get
  16. {
  17. return color;
  18. }
  19. }
  20. public ColorEventArgs(ColorBgra color)
  21. {
  22. this.color = color;
  23. }
  24. }
  25. }