import java.awt.*; class LineShape extends Shape { LineShape(World world) { super(world); this.color = new Color(102, 102, 204); this.coords = new int[][] { { 0, -1 }, { 0, 0 }, { 0, 1 }, { 0, 2 } }; } }