I am using the package sgame for drawing strategic-form games for my thesis on game theory. Everything works fine, but I do not know how to cross rows or columns which are dominated. I found a very helpful script on
https://www.economics.utoronto.ca/osborne/latex/sgame.pdf
but the offered solution with
\def\sgtextcolor{black}%
\def\sglinecolor{black}%
\newcommand\redStrike[2]{%
\ncline[linewidth=1.2pt,nodesep=-14pt,linecolor=red]{#1}{#2}}
\begin{game}{2}{2}
&\rnode[t]{a12}{$L$} &$R$\\
\Rnode[href=20]{a21}{$T$} &$1,1$ &\Rnode{a23}{$2,2$}\\
$B$ &\rnode[b]{a32}{$2,2$} &$3,3$
\end{game}
% specify the nodes to be connected
\redStrike{a21}{a23}
\redStrike{a12}{a32}
does somehow not work in my script. Is there any other solution to my problem? This is how my matrix looks:
\begin{figure}[H]
\centering
\begin{game}{2}{2}[\textbf{S}][\textbf{T}]
& G & S \\
W & (10,5) & (0,-5) \\
L & (5,10) & (-5,0)
\end{game}
\end{figure}

