diff --git a/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs new file mode 100644 index 0000000..234a498 --- /dev/null +++ b/OOP-Opdracht-CSharp-Alfa-2022/OOP-Opdracht-CSharp-Alfa-2022/classes/Game.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Microsoft.Data.SqlClient; + +namespace OOP_Opdracht_CSharp_Alfa_2022.classes +{ + class Game + { + // Define class members + + private SqlConnection connection; + private Dictionary table_data; + private KeyValuePair record; + + // Define methods + + public KeyValuePair find() + { + + return new KeyValuePair(); + } + + } +}