libdgf/LibDgf/Aqualead/Texture/AlXYWH.cs
2021-02-16 01:04:29 -07:00

14 lines
244 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LibDgf.Aqualead.Texture
{
public struct AlXYWH
{
public short X;
public short Y;
public ushort W;
public ushort H;
}
}