Files
FreewayGamesTest/Assets/Minesweeper/Runtime/Commands/IGameCommandDispatcher.cs
T

8 lines
172 B
C#

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