Difference between revisions of "Mods/SpongePowered Mixin"

From Wildermyth Wiki
 
Line 4: Line 4:
== Description ==
== Description ==
{{Infobox Mod|type=Core|modid=mixin|version=0.16.4+mixin.0.8.7|author=Mumfrey, The Fabric Team, The Sponge Team|description=A bytecode weaving framework for Java using ASM|requires=ASM}}
{{Infobox Mod|type=Core|modid=mixin|version=0.16.4+mixin.0.8.7|author=Mumfrey, The Fabric Team, The Sponge Team|description=A bytecode weaving framework for Java using ASM|requires=ASM}}
Mixin is a Java library that allows developers to modify Java code without editing the source or binaries. It works by injecting small, targeted changes called ''mixins'' into classes at runtime. This allows modders to add, override, or extend existing behavior safely and modularly.
Mixin is a Java library that allows developers to modify Java code without editing the source or binaries. It works by injecting small, targeted changes called ''mixins'' into classes at classload time. This allows modders to add, override, or extend existing behavior safely and modularly.


== Annotations ==
== Annotations ==

Latest revision as of 22:24, 17 September 2025

Modded Content Icon.png      Modded Content: This content is part of the Mixin coremod

Mixin redirects here. For the java annotation, see @Mixin.


Description

SpongePowered Mixin
Mod Information
Type Core
Mod ID mixin
Version 0.16.4+mixin.0.8.7
Description "A bytecode weaving framework for Java using ASM"
Author(s) Mumfrey, The Fabric Team, The Sponge Team
Requires ASM

Mixin is a Java library that allows developers to modify Java code without editing the source or binaries. It works by injecting small, targeted changes called mixins into classes at classload time. This allows modders to add, override, or extend existing behavior safely and modularly.

Annotations

The following Java annotations are defined in Mixin: