Archived
0

Player mode

This commit is contained in:
2018-05-06 14:53:28 +03:00
parent efd0861a77
commit ac8a1e1921
3 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
/*
* DmitriyMX <dimon550@gmail.com>
* 2018-05-06
*/
package mc.core.player;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
@Getter
public enum PlayerMode {
SURVIVAL(0),
CREATIVE(1);
private final int id;
}