Files
2026-06-07 00:30:10 +07:00

8 lines
172 B
C#

namespace Minesweeper.Commands
{
public interface IGameCommandDispatcher
{
void Dispatch<TCommand>(TCommand command) where TCommand : IGameCommand;
}
}