19 lines
481 B
C#
19 lines
481 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Minesweeper.Core
|
|
{
|
|
public interface IBoardService
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
int MinesCount { get; }
|
|
bool IsGenerated { get; }
|
|
|
|
void InitializeEmptyBoard();
|
|
bool GenerateAfterFirstClick(int safeX, int safeY);
|
|
bool IsInside(int x, int y);
|
|
bool TryGetCell(int x, int y, out BoardCellData cell);
|
|
IReadOnlyList<BoardCellData> GetCells();
|
|
}
|
|
}
|