19 lines
251 B
C#
19 lines
251 B
C#
using System;
|
|
|
|
namespace ConsoleApp.Maps
|
|
{
|
|
public struct Cell : ICell
|
|
{
|
|
public int X { get; }
|
|
public int Y { get; }
|
|
|
|
|
|
public Cell(int x, int y)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
|
|
|
|
}
|
|
} |