Files
FreewayGamesTest/Assets/Runtime/ECS/Components/CellComponent.cs
T
2026-06-06 22:33:15 +07:00

15 lines
292 B
C#

using Unity.Entities;
namespace Minesweeper.ECS.Components
{
public struct CellComponent : IComponentData
{
public int X;
public int Y;
public byte IsMine;
public byte IsOpened;
public byte IsFlagged;
public int NeighborMines;
}
}