Starter.h 690 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef STARTER_H
  2. #define STARTER_H
  3. #include <vector>
  4. #include <fstream>
  5. #include "Liner.h"
  6. #include "intToStr.h"
  7. /** \brief Voici la classe du Starter : elle place les liners en débuts de partie.
  8. * \last Créé
  9. * \next
  10. *
  11. *
  12. */
  13. class Starter
  14. {
  15. /// > Fonctions
  16. public:
  17. Starter( int xSize, int ySize );
  18. ~Starter();
  19. void loadAreas();
  20. void spawnLiners( Liner** linerTab, int nbJoueurs );
  21. /// > Attributs
  22. private:
  23. int m_xSize ;
  24. int m_ySize ;
  25. std::vector< int > m_xl ; // Tableaux à dimensionner
  26. std::vector< int > m_yl ;
  27. std::vector< int > m_dl ;
  28. };
  29. #endif // STARTER_H