L5A/GuessTheNumberRoom.h

17 lines
324 B
C
Raw Normal View History

2024-11-06 17:02:03 -07:00
#ifndef GUESS_THE_NUMBER_ROOM_H
#define GUESS_THE_NUMBER_ROOM_H
#include "Room.h"
#include <random>
class GuessTheNumberRoom : public ARoom {
public:
GuessTheNumberRoom(std::mt19937& mt);
~GuessTheNumberRoom();
bool escapeTheRoom() override;
private:
int _secretNumber;
};
#endif//GUESS_THE_NUMBER_ROOM_H