|
@@ -77,8 +77,10 @@ void UserIoMan::printMessage(std::string msg, OutMsgType type) {
|
|
}
|
|
}
|
|
|
|
|
|
void UserIoMan::printWelcomeMessage() {
|
|
void UserIoMan::printWelcomeMessage() {
|
|
- std::cout << "please login by entering \"login <username> <password>\" \nor "
|
|
|
|
- "sign up and log in with \"signup <username> <password>\""
|
|
|
|
|
|
+ std::cout << std::endl
|
|
|
|
+ << "Please connect to a server via \"connect <ip> <port>\"," << std::endl
|
|
|
|
+ << "login by entering \"login <username> <password>\"" << std::endl
|
|
|
|
+ << "or sign up and log in with \"signup <username> <password>\"." << std::endl
|
|
<< std::endl;
|
|
<< std::endl;
|
|
}
|
|
}
|
|
|
|
|