14 lines
244 B
C#
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;
|
|
}
|
|
}
|