16 lines
256 B
C#
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;
|
|||
|
}
|
|||
|
}
|