aboutsummaryrefslogtreecommitdiff
path: root/src/ch/epfl/xblast/PlayerID.java
blob: c2c5c586dfcce41bad99f5815016749a053c48e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package ch.epfl.xblast;

/**
 * IDs the 4 different players.
 *
 * @author Pacien TRAN-GIRARD (261948)
 * @author Timothée FLOURE (257420)
 */
public enum PlayerID {

    PLAYER_1,
    PLAYER_2,
    PLAYER_3,
    PLAYER_4

}