mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2026-01-01 16:54:20 +01:00
16 lines
340 B
Java
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;
|
|
}
|
|
} |