RectangleF.cs 421 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public struct RectangleF
  4. {
  5. public float X { get; }
  6. public float Y { get; }
  7. public float Width { get; }
  8. public float Height { get; }
  9. public RectangleF(float x, float y, float width, float height)
  10. {
  11. X = x;
  12. Y = y;
  13. Width = width;
  14. Height = height;
  15. }
  16. }
  17. }