[MISC] tried to send the message to the current lobby, didn't work.

This commit is contained in:
Dogukan
2020-10-21 20:43:28 +02:00
parent 74f8e868f6
commit a4e45b1a6b
5 changed files with 28 additions and 19 deletions

View File

@@ -30,6 +30,7 @@ namespace Client
private User _user;
private Client _client;
private Lobby _lobby;
private string _message;
private ClientData()
{
@@ -55,5 +56,17 @@ namespace Client
set { _lobby = value; }
}
public String Message
{
get
{
return _message;
}
set
{
_message = value;
}
}
}
}