// Support fot the -show option.

#pragma once
#include "windows.h"
#include "02Board.h"
class Board;

class SolutionWindow
{
public:
			SolutionWindow(Board *aBoard);

	void	DrawBoard(HDC hdc);
	void	DrawMove(card type,int fromX,int fromY, int toX, int toY);
private:
	Board	*itsBoard;
	HWND	window;

	void	DrawCard(HDC hdc, card type, int x, int y);
};