Files
Just.Core/Core/Collections/MapPoint.cs
2023-12-14 21:48:48 +04:00

10 lines
247 B
C#

namespace Just.Core.Collections;
public readonly struct MapPoint<T>(T value, int x, int y, IMap<T> map)
{
public readonly T Value = value;
public IMap<T> Map { get; } = map;
public int X { get; } = x;
public int Y { get; } = y;
}