Advertisement
Guest User

Untitled

a guest
May 8th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package net.minecraft.launcher.profile;
  2.  
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. import java.util.UUID;
  6.  
  7. import net.minecraft.launcher.authentication.AuthenticationDatabase;
  8.  
  9.  
  10. public class RawProfileList {
  11. public Map<String, Profile> profiles = new HashMap<String, Profile>();
  12. public String selectedProfile;
  13. public UUID clientToken = UUID.randomUUID();
  14. public AuthenticationDatabase authenticationDatabase = new AuthenticationDatabase();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement