Added full tile entity data support for all block types that use it, including chests, dispensers, furnaces, mob spawners, and note blocks.

This commit is contained in:
sk89q
2011-01-23 00:37:36 -08:00
parent 4165f58d82
commit 7488cd29fa
7 changed files with 162 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
package org.bukkit.block;
/**
* Represents a note.
*
* @author sk89q
*/
public interface NoteBlock extends BlockState {
/**
* Gets the note.
*
* @return
*/
public byte getNote();
/**
* Set the note.
*
* @param note
*/
public void setNote(byte note);
}