16 lines
298 B
C#
16 lines
298 B
C#
namespace ConsoleApp.Maps
|
|
{
|
|
public struct SquareCell : ISquareCell
|
|
{
|
|
public int X { get; }
|
|
public int Y { get; }
|
|
public int Z { get; }
|
|
|
|
public SquareCell(int x, int y)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Z = default;
|
|
}
|
|
}
|
|
} |