8 lines
170 B
C#
8 lines
170 B
C#
namespace Minesweeper.Commands
|
|
{
|
|
public interface IGameCommandHandler<in TCommand> where TCommand : IGameCommand
|
|
{
|
|
void Handle(TCommand command);
|
|
}
|
|
}
|