Files
FreewayGamesTest/Assets/Scripts/ECS/Components/BoardConfigComponent.cs
T
2026-06-07 01:12:10 +07:00

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