SST-CTF/snake

View on GitHub
org.sstctf.snake_game/src/org/sstctf/snake_game/State.java

Summary

Maintainability
A
0 mins
Test Coverage
package org.sstctf.snake_game;
/**
 * 
 * Enumeration that describes the state of the game.
 * 
 * Game: Player is playing the game
 * DEATH: Player lost
 * 
 * @author Andrew Quach
 * @author Stanislav Lyakhov
 *
 * @version 1.0.0
 */

public enum State {
    GAME,
    DEATH
}