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

7 lines
242 B
Java
Raw Normal View History

2022-09-19 21:26:23 +02:00
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) {
}