You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
421 B
Java

package net.fabricmc.example.client;
import net.fabricmc.api.ClientModInitializer;
public class ExampleClientMod implements ClientModInitializer {
@Override
public void onInitializeClient() {
// This code runs on the client side only, and should be used to set up
// client-side logic, such as render or integrated-server tweaks.
// Proceed with mild caution.
System.out.println("Hello client world!");
}
}