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