Encrypt own cards which are sent at the beginning of the hand - only applicable to registered users.

This commit is contained in:
lotodore
2010-09-04 11:56:40 +00:00
parent daf99deac3
commit c2ba56aba9
89 changed files with 675 additions and 285 deletions
-14
View File
@@ -51,20 +51,6 @@ PlayerData::SetName(const string &name)
m_name = name;
}
string
PlayerData::GetPassword() const
{
boost::mutex::scoped_lock lock(m_dataMutex);
return m_password;
}
void
PlayerData::SetPassword(const string &password)
{
boost::mutex::scoped_lock lock(m_dataMutex);
m_password = password;
}
std::string
PlayerData::GetCountry() const
{