| 54 | }; |
| 55 | |
| 56 | static DifficultyType DifficultyNumberToDifficulty( const unsigned int n ) |
| 57 | { |
| 58 | switch( n ) |
| 59 | { |
| 60 | case 0: return Difficulty::Easy; |
| 61 | case 1: return Difficulty::Normal; |
| 62 | case 2: return Difficulty::Hard; |
| 63 | default: return Difficulty::Normal; |
| 64 | }; |
| 65 | } |
| 66 | |
| 67 | Host::Host( const int argc, const char* const* const argv ) |
| 68 | : program_arguments_( argc, argv ) |
no outgoing calls
no test coverage detected