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

11 lines
226 B
C#

using Minesweeper.Core;
namespace Minesweeper.ECS
{
public interface IBoardEcsSyncService
{
void SyncBoard(IBoardService boardService);
void SyncGameState(GameState state, bool hasFirstClick);
}
}