16 lines
296 B
C#
16 lines
296 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace DotNet.Revit.Hook.DataStructure
|
|||
|
|
{
|
|||
|
|
[StructLayout(LayoutKind.Sequential)]
|
|||
|
|
public struct POINT
|
|||
|
|
{
|
|||
|
|
public int X;
|
|||
|
|
public int Y;
|
|||
|
|
}
|
|||
|
|
}
|