2017-04-29 04:43:43 +03:00

16 lines
340 B
Java

package sample;
public class Pixel {
Color background;
Color foreground;
int alpha;
String symbol;
public Pixel(Color background, Color foreground, int alpha, String symbol) {
this.background = background;
this.foreground = foreground;
this.alpha = alpha;
this.symbol = symbol;
}
}