Archived
0

Block: getBlockType() -> getType()

This commit is contained in:
2018-12-25 10:27:06 +03:00
parent 3ecaa87b0a
commit 969ecdac36
3 changed files with 4 additions and 4 deletions

View File

@@ -3,6 +3,6 @@ package mc.core.world.block;
public interface Block {
int getLight();
void setLight(int light);
BlockType getBlockType();
BlockType getType();
BlockLocation getLocation();
}