forked from External/mage
24 lines
359 B
Java
24 lines
359 B
Java
package mage.players.net;
|
|
|
|
/**
|
|
* @author ayrat
|
|
*/
|
|
public enum UserGroup {
|
|
|
|
COMPUTER(0),
|
|
PLAYER(1),
|
|
DEFAULT(2),
|
|
MAGE(3),
|
|
ADMIN(7),
|
|
OWNER(15);
|
|
|
|
private final int groupId;
|
|
|
|
UserGroup(int groupId) {
|
|
this.groupId = groupId;
|
|
}
|
|
|
|
public int getGroupId() {
|
|
return this.groupId;
|
|
}
|
|
}
|