This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/src/main/java/com/thebrokenrail/scriptcraft/core/ScriptCraftEntrypoint.java
TheBrokenRail aa8e3f5e2b
All checks were successful
ScriptCraft/pipeline/head This commit looks good
Restructure
2020-04-27 20:15:24 -04:00

12 lines
205 B
Java

package com.thebrokenrail.scriptcraft.core;
public interface ScriptCraftEntrypoint {
String getModID();
String getModIndex();
default boolean shouldAutoLoad() {
return true;
}
}