This commit is contained in:
Cool Guy
2026-04-20 23:22:10 +00:00
parent a97e122e58
commit 018b24bf71
92 changed files with 0 additions and 1286 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());
}
}