12 lines
195 B
C#
12 lines
195 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LibDgf.Aqualead.Texture
|
|
{
|
|
public struct AlPoint
|
|
{
|
|
public short X;
|
|
public short Y;
|
|
}
|
|
}
|