Example usage for net.minecraftforge.event.world ChunkEvent getChunk

List of usage examples for net.minecraftforge.event.world ChunkEvent getChunk

Introduction

In this page you can find the example usage for net.minecraftforge.event.world ChunkEvent getChunk.

Prototype

public IChunk getChunk() 

Source Link

Usage

From source file:com.ethylamine.fsynthesis.util.position.ChunkCoord.java

License:Open Source License

private ChunkCoord(ChunkEvent event) {
    this(event.getChunk().xPosition, event.getChunk().zPosition);
}