You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
502 B

using System.Runtime.InteropServices;
namespace Apewer.Internals.Interop
{
/// <summary></summary>
[StructLayout(LayoutKind.Sequential)]
struct Point
{
/// <summary></summary>
public int x;
/// <summary></summary>
public int y;
/// <summary></summary>
/// <param name="x"></param>
/// <param name="y"></param>
public Point(int x, int y)
{
this.x = x;
this.y = y;
}
}
}