Skip to content
Snippets Groups Projects
Commit f674fcbe authored by Floris's avatar Floris
Browse files

added basic stuff

parent e5c17def
No related branches found
No related tags found
No related merge requests found
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
......@@ -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
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