14 lines
188 B
Java
14 lines
188 B
Java
|
package sig;
|
||
|
|
||
|
import java.awt.Color;
|
||
|
|
||
|
public class Pixel {
|
||
|
int x,y;
|
||
|
Color col;
|
||
|
Pixel(int x,int y,Color col) {
|
||
|
this.x=x;
|
||
|
this.y=y;
|
||
|
this.col=col;
|
||
|
}
|
||
|
}
|