#pragma once #include "../Joueur.hpp" #include "../Plateau.hpp" class PlateauDames : public Plateau { Joueur *j1, *j2; public: PlateauDames(Joueur &joueur1, Joueur &joueur2); virtual ~PlateauDames(); };