12 lines
212 B
C++
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();
|
|
};
|