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