Inceptum/launcher/src/main/java/io/gitlab/jfronny/inceptum/launcher/system/importer/IntermediaryManifest.java

7 lines
242 B
Java

package io.gitlab.jfronny.inceptum.launcher.system.importer;
import org.jetbrains.annotations.Nullable;
public record IntermediaryManifest(String name, @Nullable String overridesPath, String gameVersion, @Nullable String fabricVersion) {
}