Advertisement
robin4002

Untitled

Aug 2nd, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. -libraryjars <java.home>/lib/rt.jar
  2.  
  3. -dontoptimize
  4. -dontpreverify
  5. -dontwarn **
  6. -keepattributes *Annotation*
  7.  
  8. -keep public class fr.mcnanotech.nhg.** {
  9. public protected <methods>;
  10. }
  11.  
  12. -keepclassmembers !public class fr.mcnanotech.nhg.** {
  13. public protected <methods>;
  14. }
  15.  
  16. -keep public class net.minecraft.** {
  17. *;
  18. }
  19.  
  20. -keepclassmembers enum * {
  21. public static **[] values();
  22. public static ** valueOf(java.lang.String);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement