import java.awt.Color;
import java.awt.Shape;


public class MyShape {
	private int x;
	private int y;
	private Color color;
	private Shape shape;
	
	public MyShape(){
		this(0,0,Color.blue,null);
	}
	public MyShape(int x, int y, Color color, Shape shape) {
		super();
		this.x = x;
		this.y = y;
		this.color = color;
		this.shape = shape;
	}
	public int getX() {
		return x;
	}
	public void setX(int x) {
		this.x = x;
	}
	public int getY() {
		return y;
	}
	public void setY(int y) {
		this.y = y;
	}
	public Color getColor() {
		return color;
	}
	public void setColor(Color color) {
		this.color = color;
	}
	public Shape getShape() {
		return shape;
	}
	public void setShape(Shape shape) {
		this.shape = shape;
	}


}
