This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/includes/Dames/PlateauDames.hpp

12 lines
212 B
C++

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