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/
out/
classes/
src/main/generated/
# eclipse
@@ -39,3 +38,4 @@ hs_err_*.log
replay_*.log
*.hprof
*.jfr
/src/main/generated/
+5 -8
View File
@@ -1,9 +1,6 @@
# fantasysmp
# FantasySMP
## Setup
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.
## License
This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects.
custom items mod.
as of writing this readme, includes:
- Witherite Gear
- Dragonite Gear
@@ -10,6 +10,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class ExampleClientMixin {
@Inject(at = @At("HEAD"), method = "run")
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()
}
}