14 lines
No EOL
196 B
C++
14 lines
No EOL
196 B
C++
#ifndef EXIT_ROOM_H
|
|
#define EXIT_ROOM_H
|
|
|
|
#include "Room.h"
|
|
|
|
class ExitRoom : public ARoom {
|
|
public:
|
|
ExitRoom();
|
|
~ExitRoom();
|
|
|
|
bool escapeTheRoom() override;
|
|
};
|
|
|
|
#endif//EXIT_ROOM_H
|