This commit is contained in:
Paldiu 2021-03-26 13:28:50 -05:00
commit e5e62fe8e1
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package io.github.simplexdev.simplexcore.structures;
public enum PasteType {
BLOCKBYBLOCKASYNC,
INSTANTASYNC
}

View File

@ -0,0 +1,8 @@
package io.github.simplexdev.simplexcore.structures.exception;
public class SchematicNotLoaded extends Exception {
public SchematicNotLoaded(String msg) {
super(msg);
}
}