README
build / build (push) Has been cancelled

This commit is contained in:
2026-07-13 23:33:37 +01:00
parent a1c4fe3edf
commit cad49095b4
3 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -4,7 +4,6 @@
build/ build/
out/ out/
classes/ classes/
src/main/generated/
# eclipse # eclipse
@@ -39,3 +38,4 @@ hs_err_*.log
replay_*.log replay_*.log
*.hprof *.hprof
*.jfr *.jfr
/src/main/generated/
+5 -8
View File
@@ -1,9 +1,6 @@
# fantasysmp # FantasySMP
## Setup custom items mod.
as of writing this readme, includes:
For setup instructions, please see the [Fabric Documentation page](https://docs.fabricmc.net/develop/getting-started/creating-a-project#setting-up) related to the IDE that you are using. - Witherite Gear
- Dragonite Gear
## License
This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects.
@@ -10,6 +10,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class ExampleClientMixin { public class ExampleClientMixin {
@Inject(at = @At("HEAD"), method = "run") @Inject(at = @At("HEAD"), method = "run")
private void init(CallbackInfo info) { private void init(CallbackInfo info) {
// This code is injected into the start of Minecraft.run()V // This code is injected into the start of Minecraft.run()
} }
} }