Skip to content

Commit

Permalink
Chunk hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
tahg committed Mar 10, 2011
1 parent 4d22250 commit 09993f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/org/bukkit/Chunk.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
package org.bukkit;

import org.bukkit.block.Block;
import org.bukkit.block.BlockState;
import org.bukkit.entity.Entity;

/**
* Represents a chunk of blocks
Expand Down Expand Up @@ -38,4 +40,8 @@ public interface Chunk {
* @return the Block
*/
Block getBlock(int x, int y, int z);

Entity[] getEntities();

BlockState[] getTileEntities();
}

0 comments on commit 09993f1

Please sign in to comment.