コード例 #1
0
ファイル: ServerLevel.java プロジェクト: speaw/OpenClassic
  public BlockEntity getBlockEntity(Position pos) {
    for (BlockEntity entity : this.entities) {
      if (entity.getPosition().equals(pos)) return entity;
    }

    return null;
  }