12 lines
216 B
C#
12 lines
216 B
C#
using Unity.Entities;
|
|
|
|
namespace Minesweeper.ECS.Components
|
|
{
|
|
public struct BoardConfigComponent : IComponentData
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public int MinesCount;
|
|
}
|
|
}
|