HeavenStudioPlus/Assets/Plugins/Starpelly/Common.cs

13 lines
236 B
C#
Raw Normal View History

2021-12-19 04:10:43 +00:00
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;
}
}