CPF/CPF.Skia/GlContexts/Wgl/RECT.cs
2023-11-21 23:05:03 +08:00

16 lines
256 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace CPF.Skia
{
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int left;
public int top;
public int right;
public int bottom;
}
}