mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 02:02:04 -07:00
16 lines
269 B
Java
16 lines
269 B
Java
package org.bukkit;
|
|
|
|
public enum BlockDamageLevel {
|
|
STARTED(0), DIGGING(1), BROKEN(3), STOPPED(2);
|
|
|
|
private int level;
|
|
|
|
private BlockDamageLevel(final int level) {
|
|
this.level = level;
|
|
}
|
|
|
|
public int getLevel() {
|
|
return level;
|
|
}
|
|
}
|