Initial commit

This commit is contained in:
2023-10-18 15:48:48 +08:00
commit 888e2d60cc
25 changed files with 766 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package xyz.thewhitedog9487;
import net.fabricmc.api.ClientModInitializer;
public class ServerAddressSpaceFixClient implements ClientModInitializer {
@Override
public void onInitializeClient() {
// This entrypoint is suitable for setting up client-specific logic, such as rendering.
}
}