This commit is contained in:
Julian Krings
2024-12-14 16:43:42 +01:00
parent 8c7c9f89e1
commit 3265447536
@@ -85,9 +85,9 @@ public abstract class ExternalDataProvider {
*/ */
public void processUpdate(@NotNull Engine engine, @NotNull Block block, @NotNull Identifier blockId) {} public void processUpdate(@NotNull Engine engine, @NotNull Block block, @NotNull Identifier blockId) {}
public abstract @NotNull Identifier @NotNull [] getBlockTypes(); public abstract @NotNull Identifier[] getBlockTypes();
public abstract @NotNull Identifier @NotNull [] getItemTypes(); public abstract @NotNull Identifier[] getItemTypes();
public abstract boolean isValidProvider(@NotNull Identifier id, boolean isItem); public abstract boolean isValidProvider(@NotNull Identifier id, boolean isItem);
} }