toto/BE c/projet/bdd.h
2026-01-09 10:13:55 +01:00

11 lines
No EOL
356 B
C++

#ifndef bdd_H
#define bdd_H
#include "ecran.h"
#include "bouton.h"
#include <list>
#include <string>
using namespace std;
void defileTexte(ecran &lcd, String texte);
void listequestions_init(ecran& lcd,bouton &boutonRelief, bouton &boutonPlat);
void play(ecran &lcd, list<string> Questions, int reponses[], bouton &boutonRelief, bouton &boutonPlat);
#endif