Cubix_Gamer

Untitled

Jun 27th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.98 KB | None | 0 0
  1. package fr.cubix_gamer.cubix.regon.land.launcher;
  2.  
  3. import java.io.File;
  4.  
  5. import fr.theshark34.openlauncherlib.launcher.AuthInfos;
  6. import fr.theshark34.openlauncherlib.launcher.GameInfos;
  7. import fr.theshark34.openlauncherlib.launcher.GameTweak;
  8. import fr.theshark34.openlauncherlib.launcher.GameType;
  9. import fr.theshark34.openlauncherlib.launcher.GameVersion;
  10.  
  11. public class Launcher {
  12.    
  13.     public static final GameVersion CRL_VERSION = new GameVersion("1.12.2", GameType.V1_8_HIGHER);
  14.     public static final GameInfos CRL_INFOS = new GameInfos("Cubix & Regon Land", CRL_VERSION, true, new GameTweak[] {GameTweak.FORGE});
  15.     public static final File CRL_DIR = CRL_INFOS.getGameDir();
  16.  
  17.     private static AuthInfos authInfos;
  18.    
  19.     public static AuthInfos getAuthInfos() {
  20.         return authInfos;
  21.     }
  22.  
  23.     public static void setAuthInfos(AuthInfos authInfos) {
  24.         Launcher.authInfos = authInfos;
  25.     }
  26.  
  27.     public static void auth(String text, String text2) {
  28.         // TODO Auto-generated method stub
  29.        
  30.     }
  31.  
  32. }
Add Comment
Please, Sign In to add comment