-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Immediately migrate away from Fabric Internals, remove Mixin Plugin, c…
…loses #117 Signed-off-by: Noaaan <noaaan@hotmail.com>
- Loading branch information
Showing
5 changed files
with
21 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/nourl/mythicmetals/mixin/EntityModelLayersAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package nourl.mythicmetals.mixin; | ||
|
||
import net.minecraft.client.render.entity.model.EntityModelLayer; | ||
import net.minecraft.client.render.entity.model.EntityModelLayers; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
|
||
import java.util.Set; | ||
|
||
@Mixin(EntityModelLayers.class) | ||
public interface EntityModelLayersAccessor { | ||
|
||
@Accessor | ||
static Set<EntityModelLayer> getLAYERS() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
} |
46 changes: 0 additions & 46 deletions
46
src/main/java/nourl/mythicmetals/mixin/MythicMetalsMixinPlugin.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters