1
0
forked from Clones/Controlify

manual controller switching & keyboard movement setting

This commit is contained in:
isXander
2023-03-07 20:03:29 +00:00
parent c9294e281d
commit 300817e561
12 changed files with 166 additions and 57 deletions

View File

@ -0,0 +1,13 @@
package dev.isxander.controlify.mixins.feature.autoswitch;
import net.minecraft.client.gui.components.toasts.ToastComponent;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.List;
@Mixin(ToastComponent.class)
public interface ToastComponentAccessor {
@Accessor
List<ToastComponent.ToastInstance<?>> getVisible();
}