diff options
Diffstat (limited to 'src/tetris/piece/JPiece.java')
-rw-r--r-- | src/tetris/piece/JPiece.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/tetris/piece/JPiece.java b/src/tetris/piece/JPiece.java new file mode 100644 index 0000000..711a492 --- /dev/null +++ b/src/tetris/piece/JPiece.java @@ -0,0 +1,38 @@ +/* + * Jesse Morgan <jesterpm@u.washington.edu> + * + * TCSS 305 Ð Autumn 2009 + * Tetris Project + * 17 November 2009 + */ + +package tetris.piece; + +/** + * Class to represent a Tetris J piece. + * + * @author Jesse Morgan <jesterpm@u.washington.edu> + * @version 1.0 17 November 2009 + */ +public class JPiece extends TetrisPiece { + // Private Constants + /** + * X Rotation Point. + */ + private static final double ROTATION_X = 1; + + /** + * Y Rotation Point. + */ + private static final double ROTATION_Y = 1; + + /** + * Setup the J Piece. + * + * @param the_x Tetris piece X-coord. + * @param the_y Tetris piece Y-coord. + */ + public JPiece(final int the_x, final int the_y) { + super(the_x, the_y, new double[] {1, 0, 1, 1, 1, 2, 0, 2}, ROTATION_X, ROTATION_Y); + } +}
\ No newline at end of file |