Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Enumeration class Piece.
- * Represents the visual states of a Kaboom Cell.
- * There's a one-to-one correspondence with piece images.
- * @author J. Dalbey
- * @version 6/15/2012
- */
- public enum Piece
- {
- /** bomb, not hidden, unexploded, not flagged */
- bomb,
- /** exploded, not hidden */
- exploded,
- /** hidden and not flagged */
- hidden,
- /** hidden and flagged */
- flagged;
- }
Advertisement
Add Comment
Please, Sign In to add comment