1234567891011 |
- #ifndef METHODES_H_INCLUDED
- #define METHODES_H_INCLUDED
- #include <fstream>
- #include <iostream>
- std::string niveauSuivant(std::string index, std::string niveauPrecedant);
- bool chargerNiveau(char *terrain, std::string chemin);
- void save(std::string index, std::string niveauActuel);
- #endif // METHODES_H_INCLUDED
|