mirror of
https://github.com/YouHaveTrouble/BlockEdit.git
synced 2026-06-29 13:36:19 +00:00
13 lines
300 B
Java
13 lines
300 B
Java
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();
|
|
|
|
}
|