expanded the schematic api draft

This commit is contained in:
2025-05-19 20:52:02 +02:00
parent 015f1abf49
commit 7383c74fcc
8 changed files with 179 additions and 31 deletions
@@ -0,0 +1,12 @@
package me.youhavetrouble.blockedit.schematic;
import org.jetbrains.annotations.NotNull;
public interface FileSchematicProvider<S extends Schematic> extends SchematicProvider<S> {
/**
* Get the file extensions of the schematic provider.
*/
@NotNull String[] fileExtensions();
}