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