// // Created by camer on 22/05/2020. // #ifndef PROJET_VICTORAVECUNK_MENU_H #define PROJET_VICTORAVECUNK_MENU_H #include #include #include "Tortue.h" class Menu { protected: int id; int nbreChoices; int choice; std::list> list; std::list listId; public: Menu(); std::string getMessage(); void nextChoice(); int getId() const; int getChoice() const; void previousChoice(); void menuBack(); void menuNext(); std::string displayDefault(float temp, float press, int rad, int tap, int nbTortue); }; #endif //PROJET_VICTORAVECUNK_MENU_H