Files
MicrosoftIris/UIXrender/Interop/Drawing/Point.cs
T
2026-07-22 18:34:57 -05:00

12 lines
288 B
C#

using System.Runtime.InteropServices;
namespace Microsoft.Iris.Render.Interop.Drawing;
// Bit-for-bit mirror of Microsoft.Iris.Render.Point (UIX.RenderApi/Microsoft/Iris/Render/Point.cs).
[StructLayout(LayoutKind.Sequential)]
public struct Point
{
public int x;
public int y;
}