15 lines
No EOL
264 B
C#
15 lines
No EOL
264 B
C#
namespace WingsEmu.Game.Helpers;
|
|
|
|
public struct Location
|
|
{
|
|
public Location(int mapId, short x, short y)
|
|
{
|
|
MapId = mapId;
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
|
|
public int MapId { get; }
|
|
public short X { get; }
|
|
public short Y { get; }
|
|
} |