ColorSI.cs 405 B

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