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