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

12 lines
484 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;
public class Exporters {
public static final int STEP_COUNT = 4;
public static final CurseForgeExporter CURSE_FORGE = new CurseForgeExporter();
public static final ModrinthExporter MODRINTH = new ModrinthExporter();
2022-09-18 15:15:30 +02:00
public static final MultiMCExporter MULTI_MC = new MultiMCExporter();
public static final List<Exporter<?>> EXPORTERS = List.of(CURSE_FORGE, MODRINTH, MULTI_MC);
2022-09-18 15:15:30 +02:00
}