This commit is contained in:
Mylloon 2023-11-21 18:07:13 +01:00
parent 64a05f9a9f
commit afaa1ff7eb
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
#include "../includes/Piece.hpp"
Piece::Piece(std::string categorie) { std::cout << "pièce\n"; }
Piece::Piece(std::string cat) { std::cout << "pièce\n"; }
Piece::~Piece() {}

View file

@ -1,10 +1,10 @@
#include "../includes/Plateau.hpp"
Plateau::Plateau(int taille) {
plateau = new Piece **[taille];
for (int i = 0; i < taille; i++) {
plateau[i] = new Piece *[taille];
for (int j = 0; j < taille; j++) {
Plateau::Plateau(int t) {
plateau = new Piece **[t];
for (int i = 0; i < t; i++) {
plateau[i] = new Piece *[t];
for (int j = 0; j < t; j++) {
plateau[i][j] = nullptr;
}
}