ColorUI.cs 413 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.GAL.Color
  2. {
  3. public struct ColorUI
  4. {
  5. public uint Red { get; }
  6. public uint Green { get; }
  7. public uint Blue { get; }
  8. public uint Alpha { get; }
  9. public ColorUI(uint red, uint green, uint blue, uint alpha)
  10. {
  11. Red = red;
  12. Green = green;
  13. Blue = blue;
  14. Alpha = alpha;
  15. }
  16. }
  17. }