diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/value/DependentLibrary.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/value/DependentLibrary.java index 04c4a5151..720f65b9c 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/value/DependentLibrary.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/value/DependentLibrary.java @@ -1,16 +1,18 @@ package net.kdt.pojavlaunch.value; +import net.kdt.pojavlaunch.JMinecraftVersionList.Arguments.ArgValue.ArgRules; + public class DependentLibrary { + public ArgRules[] rules; public String name; - public LibraryDownloads downloads; + public LibraryDownloads downloads; public String url; - public static class LibraryDownloads - { - public MinecraftLibraryArtifact artifact; - public LibraryDownloads(MinecraftLibraryArtifact artifact) { - this.artifact = artifact; - } - } + public static class LibraryDownloads { + public MinecraftLibraryArtifact artifact; + public LibraryDownloads(MinecraftLibraryArtifact artifact) { + this.artifact = artifact; + } + } }