diff --git a/PuzzlePlayer/PuzzleForm.cs b/PuzzlePlayer/PuzzleForm.cs index 5f8df87c7a919e4d6af3813bb050fee9d465f16f..7b315dc2a9d6c1a1449b2f1b1f0b4bf50dc62bbb 100644 --- a/PuzzlePlayer/PuzzleForm.cs +++ b/PuzzlePlayer/PuzzleForm.cs @@ -17,7 +17,7 @@ namespace PuzzlePlayer_Namespace private Label boardlabel; private TextBox informationbox; public Graphics graphics; - public Board board + public Board board //Updating the Board member will immediately call board.Draw method so that the board is updated visually { get { return board; } set @@ -27,7 +27,7 @@ namespace PuzzlePlayer_Namespace } } - public PuzzleForm(Board b = null, Size s = default(Size)) + public PuzzleForm(Board b = null, Size s = default(Size)) //Takes Board and Size parameter and sets up the PuzzleForm window. { if (s == default(Size)) s = new Size(800, 500); this.Size = s;