Initial commit

This commit is contained in:
Oth3r 2023-07-20 20:17:52 -05:00
commit ff1c9342ca
17 changed files with 1463 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package one.oth3r.sit;
import net.fabricmc.api.DedicatedServerModInitializer;
public class SitServer implements DedicatedServerModInitializer {
@Override
public void onInitializeServer() {
Sit.isClient = false;
config.load();
LangReader.loadLanguageFile();
}
}