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

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