added client, see slides 02 welcome and setup

This commit is contained in:
Jottyfan
2026-07-07 21:46:45 +02:00
parent 402392cb90
commit b74146b7f9
3 changed files with 25 additions and 17 deletions
@@ -1,30 +1,21 @@
package de.jottyfan.minecraft;
import net.fabricmc.api.ModInitializer;
import net.minecraft.resources.Identifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import net.fabricmc.api.ModInitializer;
/**
*
* @author jotty
*
*/
public class Mfmd2627 implements ModInitializer {
public static final String MOD_ID = "mfmd2627";
// This logger is used to write text to the console and the log file.
// It is considered best practice to use your mod id as the logger's name.
// That way, it's clear which mod wrote info, warnings, and errors.
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
@Override
public void onInitialize() {
// This code runs as soon as Minecraft is in a mod-load-ready state.
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
LOGGER.info("Hello Fabric world!");
}
public static Identifier id(String path) {
return Identifier.fromNamespaceAndPath(MOD_ID, path);
}
}
@@ -0,0 +1,14 @@
package de.jottyfan.minecraft;
import net.fabricmc.api.ClientModInitializer;
/**
*
* @author jotty
*
*/
public class Mfmd2627Client implements ClientModInitializer {
@Override
public void onInitializeClient() {
}
}
+4 -1
View File
@@ -3,7 +3,7 @@
"id": "mfmd2627",
"version": "${version}",
"name": "mfmd2627",
"description": "A mod for learning how to develop mods in a group",
"description": "Learn how to develop mods in a group",
"authors": [
"The GTA team"
],
@@ -17,6 +17,9 @@
"entrypoints": {
"main": [
"de.jottyfan.minecraft.Mfmd2627"
],
"client": [
"de.jottyfan.minecraft.Mfmd2627Client"
]
},
"depends": {