This commit is contained in:
Michiel.VanDorpe
2019-08-04 20:44:25 +02:00
parent b3a4a7441a
commit 41a10e710c
4 changed files with 27 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
using Logic;
using Globals.classes;
using Logic;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -14,10 +15,12 @@ namespace GUI_Gokkantoor
public partial class Gokspel : Form
{
public LogicLayer l;
public Gokspel(Logic.LogicLayer l)
public Person p;
public Gokspel(Logic.LogicLayer l, Person p)
{
l = new LogicLayer();
this.l = l;
InitializeComponent();
this.p = p;
}
private void label2_Click(object sender, EventArgs e)
@@ -49,5 +52,10 @@ namespace GUI_Gokkantoor
a.FormClosed += adminClosed;
a.Show();
}
private void label3_Click(object sender, EventArgs e)
{
}
}
}