8 lines
172 B
C#
8 lines
172 B
C#
namespace Minesweeper.Commands
|
|
{
|
|
public interface IGameCommandDispatcher
|
|
{
|
|
void Dispatch<TCommand>(TCommand command) where TCommand : IGameCommand;
|
|
}
|
|
}
|