Inceptum/launcher/src/main/java/io/gitlab/jfronny/inceptum/launcher/system/export/Exporters.java

12 lines
421 B
Java
Raw Normal View History

2022-09-18 15:15:30 +02:00
package io.gitlab.jfronny.inceptum.launcher.system.export;
import java.util.List;
//TODO modrinth export
public class Exporters {
public static final int STEP_COUNT = 4;
public static final CurseForgeExporter CURSE_FORGE = new CurseForgeExporter();
public static final MultiMCExporter MULTI_MC = new MultiMCExporter();
public static final List<Exporter<?>> EXPORTERS = List.of(CURSE_FORGE, MULTI_MC);
}