Skip to content
Snippets Groups Projects
Commit dc67a3bf authored by bionic85's avatar bionic85
Browse files

cast fix

parent 1dc037c0
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ namespace PuzzlePlayer_Namespace
{
Move ?m = CheckMove(i, j, boardToSolve);
if (m != null)
result.Add(m);
result.Add((Move)m);
}
return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment