12 lines
221 B
C#
12 lines
221 B
C#
using Minesweeper.Core;
|
|
using Unity.Entities;
|
|
|
|
namespace Minesweeper.ECS.Components
|
|
{
|
|
public struct GameStateComponent : IComponentData
|
|
{
|
|
public GameState State;
|
|
public byte HasFirstClick;
|
|
}
|
|
}
|