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/examples/javascript/src/main/java/com/thebrokenrail/scriptcraft/example/JavaScriptExample.java
TheBrokenRail 530f1e9871
All checks were successful
ScriptCraft/pipeline/head This commit looks good
Improve Documentation
2020-05-24 14:18:21 -04:00

10 lines
261 B
Java

package com.thebrokenrail.scriptcraft.example;
import com.thebrokenrail.scriptcraft.core.ScriptCraftEntryPoint;
public class JavaScriptExample implements ScriptCraftEntryPoint {
@Override
public String getEntryPoint() {
return "modid";
}
}