15 lines
328 B
C#
15 lines
328 B
C#
using Unity.Entities;
|
|
|
|
namespace Minesweeper.ECS.Components
|
|
{
|
|
public struct BoardConfigComponent : IComponentData
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public int MinesCount;
|
|
public int OpenedSafeCellsCount;
|
|
public int FlaggedCellsCount;
|
|
public byte IsGenerated;
|
|
}
|
|
}
|