This repository has been archived on 2023-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
Chess/src/Piece.java
2023-02-09 20:40:12 -08:00

17 lines
418 B
Java

import java.awt.*;
public class Piece {
public static final int DIMENSION = 32;
public boolean black;
public Piece() { }
public Piece(boolean black) {
this.black = black;
}
public void draw(Graphics graphics, int x, int y) {
graphics.setColor(black ? Color.BLACK : Color.WHITE);
graphics.fillRect(x - DIMENSION / 2, y - DIMENSION / 2, DIMENSION, DIMENSION);
}
}