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; } }