mirror of
https://github.com/Oth3r/Sit.git
synced 2025-09-19 16:03:22 +02:00
17 lines
No EOL
360 B
Java
17 lines
No EOL
360 B
Java
package one.oth3r.sit;
|
|
|
|
import net.fabricmc.api.ModInitializer;
|
|
|
|
import one.oth3r.sit.file.FileData;
|
|
import one.oth3r.sit.utl.Events;
|
|
|
|
public class Sit implements ModInitializer {
|
|
|
|
@Override
|
|
public void onInitialize() {
|
|
FileData.loadFiles();
|
|
// save the files to populate all missing config options
|
|
FileData.saveFiles();
|
|
Events.registerCommon();
|
|
}
|
|
} |