mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-10 21:25:30 -04:00
begin launcher_profiles.json support
This commit is contained in:
parent
125e2f4a5e
commit
acaed5a179
@ -0,0 +1,8 @@
|
|||||||
|
package net.kdt.pojavlaunch.value.launcherprofiles;
|
||||||
|
|
||||||
|
public class MinecraftAuthenticationDatabase
|
||||||
|
{
|
||||||
|
public static String accessToken;
|
||||||
|
public static String username;
|
||||||
|
public static MinecraftProfile[] profiles;
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
package net.kdt.pojavlaunch.value.launcherprofiles;
|
||||||
|
|
||||||
|
public class MinecraftLauncherProfiles
|
||||||
|
{
|
||||||
|
public static MinecraftProfile[] profiles;
|
||||||
|
public static String clientToken;
|
||||||
|
public static MinecraftAuthenticationDatabase authenticationDatabase;
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package net.kdt.pojavlaunch.value.launcherprofiles;
|
||||||
|
|
||||||
|
public class MinecraftProfile
|
||||||
|
{
|
||||||
|
public static String name;
|
||||||
|
public static String type;
|
||||||
|
public static String created;
|
||||||
|
public static String lastUsed;
|
||||||
|
public static String icon;
|
||||||
|
public static String lastVersionId;
|
||||||
|
public static String gameDir;
|
||||||
|
public static String javaDir;
|
||||||
|
public static String javaArgs;
|
||||||
|
public static String logConfig;
|
||||||
|
public static boolean logConfigIsXML;
|
||||||
|
public static MinecraftResolution[]resolution;
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package net.kdt.pojavlaunch.value.launcherprofiles;
|
||||||
|
|
||||||
|
public class MinecraftResolution
|
||||||
|
{
|
||||||
|
public static int width;
|
||||||
|
public static int height;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user