Update 'Ecriture.java'

This commit is contained in:
Matthis FAUVET 2023-04-28 20:38:28 +02:00
parent 17f04beb46
commit 5e3a9c41f2

View File

@ -10,6 +10,12 @@ public class Ecriture {
private String[] tabOffSet; private String[] tabOffSet;
private String filePath; private String filePath;
/**
* Class qui créer un objet Algo determinatif pour résoudre le Labyrinthe
* @param unPerso On rentre
* @param grille c'est la grille de true et false qui permet de savoir si une cellules est un mur ou un couloir
* @param coord tableau double dimension qui stock les différentes Cellules.
*/
public Ecriture(byte[] tabBytes, String[] tabOctetsBinaires, String chemin) { public Ecriture(byte[] tabBytes, String[] tabOctetsBinaires, String chemin) {
this.tabHeader = tabBytes; this.tabHeader = tabBytes;
this.tabOffSet = tabOctetsBinaires; this.tabOffSet = tabOctetsBinaires;