Push menu Lobby pour single player (entree du username seulement)

This commit is contained in:
mduval76
2023-12-14 19:33:25 -05:00
parent e5b0c742dd
commit 58c06f9f84
3 changed files with 40 additions and 7 deletions

View File

@@ -271,6 +271,10 @@ Vector3f Player::GetDirection() const { return m_direction; }
std::string Player::GetUsername() const { return m_username; }
void Player::SetUsername(std::string username) {
m_username = username;
}
float Player::GetSensitivity() const {
return m_sensitivity;
}