Implemented snapshot support for 1.2.

This commit is contained in:
Mike Primm
2012-03-01 13:55:29 -06:00
committed by EvilSeph
parent 25f303ccde
commit d7fac74298

View File

@@ -111,4 +111,11 @@ public interface ChunkSnapshot {
* @return time in ticks * @return time in ticks
*/ */
long getCaptureFullTime(); long getCaptureFullTime();
/**
* Test if section is empty
* @param sy - section Y coordinate (block Y / 16)
* @return true if empty, false if not
*/
boolean isSectionEmpty(int sy);
} }