Adding Pieces positions

This commit is contained in:
Debucquoy
2023-03-21 14:14:39 +01:00
parent 4854fef677
commit 24df4e376c
4 changed files with 83 additions and 2 deletions

View File

@ -1,6 +1,10 @@
package school_project;
/**
* Base class for everything that is a shape kind, like map and pieces
* it contain a matrix of boolean where the shape is defined by the true's
*/
public class Shape {
protected boolean[][] matrix;