Keep the names of classes located in the feature package

This commit is contained in:
Username404 2021-05-15 01:48:12 +02:00
parent b6b001cad0
commit b524693b2a
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ subprojects {
keep("class $group.snowygui.fabric.**")
keep("class $group.snowygui.forge.**")
keepnames("class $group.snowygui.Snowy")
keepnames("class $group.snowygui.gui.feature.*")
keepclassmembers("class $group.snowygui.** { public protected <methods>; }")
keepattributes("*Annotation*, Signature, InnerClasses, EnclosingMethod, MethodParameters, Synthetic, Exceptions")
obfuscationdictionary("$dictionariesDir/dictionary.txt")
@ -198,4 +199,4 @@ tasks {
addLoader("fabric"); addLoader("forge")
}
build.get().finalizedBy(publishToModrinth)
}
}