[ADD] new constructor for user

This commit is contained in:
Sem van der Hoeven
2020-10-20 15:32:50 +02:00
parent 1e11bc5416
commit 78c1aad696
5 changed files with 18 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ using System.ComponentModel;
using System.Text;
using System.Windows.Input;
using SharedClientServer;
using System.Diagnostics;
namespace Client
{
@@ -58,5 +59,10 @@ namespace Client
get { return _lobbies; }
set { _lobbies = value; }
}
public void OnHostButtonClick()
{
Debug.WriteLine("Click host button");
}
}
}