import java.awt.*;

public class Bulle {
    final int x, y, r;
    final Color c;
    public Bulle(int x, int y, int r, Color c) {
        this.x = x;
        this.y = y;
        this.r = r;
        this.c = c;
    }
}
