Advertisement
Corosus

Untitled

Dec 29th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package net.minecraft;
  2.  
  3.  
  4. enum Util_OS {
  5.  
  6. linux("linux", 0),
  7. solaris("solaris", 1),
  8. windows("windows", 2),
  9. macos("macos", 3),
  10. unknown("unknown", 4);
  11. // $FF: synthetic field
  12. private static final Util_OS[] ENUM$VALUES = new Util_OS[]{linux, solaris, windows, macos, unknown};
  13.  
  14.  
  15. private Util_OS(String var1, int var2) {}
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement