mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
13 lines
No EOL
236 B
C#
13 lines
No EOL
236 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Starpelly.Enums.Windows;
|
|
|
|
namespace Starpelly.Common
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct POINT
|
|
{
|
|
public int x;
|
|
public int y;
|
|
}
|
|
} |