Files
FreewayGamesTest/Assets/Scripts/ECS/IBoardEcsSyncService.cs
T
2026-06-07 00:30:10 +07:00

12 lines
253 B
C#

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