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