diff options
| author | Hawarth <hawarth@hawarth.com> | 2026-03-14 18:39:10 +0100 |
|---|---|---|
| committer | Hawarth <hawarth@hawarth.com> | 2026-03-14 18:39:27 +0100 |
| commit | 2e79ad1b980b4867c3b32688d7946d52f5b85a62 (patch) | |
| tree | 215aac8d730dcdd61aa2ac95b248f70c5ced97b8 /src/client/java/com/hawarth/CraftsdwarfshipClient.java | |
| download | mc-craftsdwarfship-trunk.tar.gz mc-craftsdwarfship-trunk.zip | |
Initialises the project using Fabric MC's template mod generator.
Diffstat (limited to 'src/client/java/com/hawarth/CraftsdwarfshipClient.java')
| -rw-r--r-- | src/client/java/com/hawarth/CraftsdwarfshipClient.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/java/com/hawarth/CraftsdwarfshipClient.java b/src/client/java/com/hawarth/CraftsdwarfshipClient.java new file mode 100644 index 0000000..6209771 --- /dev/null +++ b/src/client/java/com/hawarth/CraftsdwarfshipClient.java @@ -0,0 +1,10 @@ +package com.hawarth; + +import net.fabricmc.api.ClientModInitializer; + +public class CraftsdwarfshipClient implements ClientModInitializer { + @Override + public void onInitializeClient() { + // This entrypoint is suitable for setting up client-specific logic, such as rendering. + } +}
\ No newline at end of file |
