Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void Yoba::gogoyoba()
- {
- while (m_yobbing)
- {
- std::this_thread::sleep_for(std::chrono::seconds(2));
- LOG("Yobbing around next 2 seconds")
- }
- }
- void Yoba::nonoyoba()
- {
- while (m_yobbing)
- {
- int answer;
- std::cout << "Write choice";
- std::cin >> answer;
- if (answer == 9)
- stopYoba();
- }
- }
Add Comment
Please, Sign In to add comment