Hangman/word_choosing.h
2024-05-23 18:19:51 +03:00

11 lines
No EOL
227 B
C++

#ifndef WORD_CHOOSING_H
#define WORD_CHOOSING_H
#include <string>
std::string topicChooser();
// used for selecing a random word based on game_mode and topic
std::string wordChooser(int game_mode, std::string topic);
#endif