Delete build directory

Pruning redundant content from repo.
This commit is contained in:
Teddy-1024
2024-12-03 17:31:23 +00:00
committed by GitHub
parent 316364a953
commit 3e5e870cfd
36 changed files with 0 additions and 375348 deletions

View File

@@ -1,26 +0,0 @@
package mcp.client;
import java.util.Arrays;
import net.minecraft.client.main.Main;
public class Start
{
public static void main(String[] args)
{
/*
* start minecraft game application
* --version is just used as 'launched version' in snoop data and is required
* Working directory is used as gameDir if not provided
*/
String assets = System.getenv().containsKey("assetDirectory") ? System.getenv("assetDirectory") : "assets";
Main.main(concat(new String[]{"--version", "mcp", "--accessToken", "0", "--assetsDir", assets, "--assetIndex", "1.18", "--userProperties", "{}"}, args));
}
public static <T> T[] concat(T[] first, T[] second)
{
T[] result = Arrays.copyOf(first, first.length + second.length);
System.arraycopy(second, 0, result, first.length, second.length);
return result;
}
}

View File

@@ -1,9 +0,0 @@
Manifest-Version: 1.0
Specification-Title: playerstats
Specification-Vendor: examplemodsareus
Specification-Version: 1
Implementation-Title: minecraft_mod_player_statistics
Implementation-Version: 1.0
Implementation-Vendor: examplemodsareus
Implementation-Timestamp: 2024-12-03T16:06:41+0000