remove debug stuff
This commit is contained in:
parent
dbadb702d0
commit
92a6aafce2
4 changed files with 3 additions and 10 deletions
|
@ -2,7 +2,6 @@
|
|||
|
||||
PieceButin::PieceButin(const enum Categorie cat, const int posX, const int posY)
|
||||
: Piece(to_string(cat), posX, posY), points(cat) {
|
||||
std::cout << "pièce - " << cat << "\n";
|
||||
this->points = cat;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
|
||||
Joueur::Joueur(const int num) : id(num) {
|
||||
std::cout << "Joueur " << num << std::endl;
|
||||
}
|
||||
Joueur::Joueur(const int num) : id(num) {}
|
||||
|
||||
Joueur::~Joueur() {}
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
#include "../includes/Piece.hpp"
|
||||
|
||||
Piece::Piece(const std::string cat, const int posX, const int posY)
|
||||
: selected(false), categorie(cat), x(posX), y(posY) {
|
||||
std::cout << "pièce - " << cat << "\n";
|
||||
}
|
||||
: selected(false), categorie(cat), x(posX), y(posY) {}
|
||||
|
||||
Piece::~Piece() {}
|
||||
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
|
||||
PieceSafari::PieceSafari(const enum Categorie cat, const int posX,
|
||||
const int posY)
|
||||
: Piece(to_string(cat), posX, posY) {
|
||||
std::cout << "pièce - " << categorie << "\n";
|
||||
}
|
||||
: Piece(to_string(cat), posX, posY) {}
|
||||
|
||||
PieceSafari::~PieceSafari() {}
|
||||
|
||||
|
|
Reference in a new issue