Update ReadableTileArchive.java

pull/486/head
Michael Barry 2023-02-14 05:29:02 -05:00 zatwierdzone przez GitHub
rodzic af5cd7bfd8
commit f36ccb1e65
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -12,12 +12,12 @@ import java.io.Closeable;
*/
public interface ReadableTileArchive extends Closeable {
/** Returns the raw tile data associated with the tile at {@code coord}. */
/** Returns the raw tile data at {@code coord} or {@code null} if not found. */
default byte[] getTile(TileCoord coord) {
return getTile(coord.x(), coord.y(), coord.z());
}
/** Returns the raw tile data associated with the tile at coordinate {@code x, y, z}. */
/** Returns the raw tile data at {@code x, y, z} or {@code null} if not found. */
byte[] getTile(int x, int y, int z);
/**