remove debug stuff

This commit is contained in:
Mylloon 2024-01-06 17:35:02 +01:00
parent dbadb702d0
commit 92a6aafce2
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
4 changed files with 3 additions and 10 deletions

View file

@ -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;
}

View file

@ -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() {}

View file

@ -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() {}

View file

@ -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() {}