Adding Map class

Signed-off-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
This commit is contained in:
2023-02-27 11:22:07 +01:00
parent 498529f29a
commit e983c5aa13
3 changed files with 23 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package school_project;
public class Piece extends Shape{
private int x,y; // Position in the Map Object
public Piece() {
super();
}