diff --git a/PuzzlePlayer/PuzzleForm.cs b/PuzzlePlayer/PuzzleForm.cs index 8f1033b7bc22e761c95ad7c56ed91ae7be1a8153..b4e0f2a7cf3e3cb2db3288addf2164d26f1822f0 100644 --- a/PuzzlePlayer/PuzzleForm.cs +++ b/PuzzlePlayer/PuzzleForm.cs @@ -32,12 +32,12 @@ namespace PuzzlePlayer_Namespace } private readonly Button UPDATEBUTTON; - public string puzzleType { get; } - public PuzzleForm(Board b) - { - board = b; - puzzleType = b.GetType().Name; - } + public string puzzleType { get { return "Binary"; } } + //public PuzzleForm(Board b) + //{ + // board = b; + // puzzleType = b.GetType().Name; + //} public PuzzleForm(Board b, Size s = default) //takes Board and Size parameter and sets up the PuzzleForm window. { @@ -88,9 +88,6 @@ namespace PuzzlePlayer_Namespace } private void CreateUI() //sets up ui elements { - Point boardP = new Point(220, 30); - Size boardS = new Size(400, 400); - void CreateButton(Button b) { Controls.Add(b);