From f674fcbef6e24575386844238712710041c64e02 Mon Sep 17 00:00:00 2001
From: Floris <hacker913@gmail.com>
Date: Wed, 13 Nov 2024 12:12:47 +0100
Subject: [PATCH] added basic stuff

---
 PuzzlePlayer/Class1.cs       | 11 +++++++++++
 PuzzlePlayer/PuzzlePlayer.cs | 15 ++++++++++++++-
 2 files changed, 25 insertions(+), 1 deletion(-)
 create mode 100644 PuzzlePlayer/Class1.cs

diff --git a/PuzzlePlayer/Class1.cs b/PuzzlePlayer/Class1.cs
new file mode 100644
index 0000000..b154c70
--- /dev/null
+++ b/PuzzlePlayer/Class1.cs
@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+public abstract class Board
+{
+    public void Teken() { }
+
+}
\ No newline at end of file
diff --git a/PuzzlePlayer/PuzzlePlayer.cs b/PuzzlePlayer/PuzzlePlayer.cs
index 693d43b..96b3826 100644
--- a/PuzzlePlayer/PuzzlePlayer.cs
+++ b/PuzzlePlayer/PuzzlePlayer.cs
@@ -6,11 +6,24 @@ class Program
 {
     internal static void Main(string[] args)
     {
-        Application.Run(new MainForm());
+        Application.Run(new PuzzleForm());
     }
 }
 
 class MainForm : Form
 {
+    public Button sudoku;
+}
 
+class PuzzleForm : Form
+{
+    public Button solvebutton;
+    public Button hintbutton;
+    public Button generatebutton;
+    public TextBox informationbox;
+    public Board board;
+    public PuzzleForm()
+    {
+
+    }
 }
\ No newline at end of file
-- 
GitLab