Merge remote-tracking branch 'origin/setupBranch' into setupBranch

This commit is contained in:
Lars
2020-10-20 16:38:59 +02:00
8 changed files with 62 additions and 21 deletions

View File

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