Restructured Mage module

This commit is contained in:
poixen 2015-11-29 21:56:49 +01:00
parent 727d62babb
commit 46eb6c0525
1502 changed files with 11 additions and 9 deletions

View file

@ -0,0 +1,24 @@
package mage.players.net;
/**
* @author ayrat
*/
public enum UserGroup {
COMPUTER(0),
PLAYER(1),
DEFAULT(2),
MAGE(3),
ADMIN(7),
OWNER(15);
private int groupId;
UserGroup(int groupId) {
this.groupId = groupId;
}
public int getGroupId() {
return this.groupId;
}
}