Initial commit

This commit is contained in:
CT
2026-04-20 20:32:23 +00:00
commit a836469b89
4 changed files with 124 additions and 0 deletions

10
Pawn.java Normal file
View File

@@ -0,0 +1,10 @@
import java.awt.*;
import javax.swing.ImageIcon;
public class Pawn extends Piece{
public Pawn(int x, int y,String color){
super(x,y,new ImageIcon("Sprites/" + color + "/Pawn.png").getImage());
}
}