IBlockPositionData interface

Пакет: com.hypixel.hytale.server.core.universe.world.chunk.section.blockpositions

Файл: com/hypixel/hytale/server/core/universe/world/chunk/section/blockpositions/IBlockPositionData.java

Методы (8)

МодификаторыВозвратСигнатура
abstract int getBlockTypeint getBlockType()
abstract BlockSection getChunkSectionBlockSection getChunkSection()
abstract int getXint getX()
abstract double getXCentredouble getXCentre()
abstract int getYint getY()
abstract double getYCentredouble getYCentre()
abstract int getZint getZ()
abstract double getZCentredouble getZCentre()

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.universe.world.chunk.section.blockpositions;

class="kw">import com.hypixel.hytale.server.core.universe.world.chunk.section.BlockSection;

class="kw">public class="kw">interface IBlockPositionData {
   BlockSection getChunkSection();

   int getBlockType();

   int getX();

   int getY();

   int getZ();

   double getXCentre();

   double getYCentre();

   double getZCentre();
}