mirror of
https://codeberg.org/moonleay/Gimble.git
synced 2024-11-21 14:22:55 +00:00
chore: removed unused Mixin
This commit is contained in:
parent
31643eab65
commit
e3b1be7028
1 changed files with 0 additions and 15 deletions
|
@ -1,15 +0,0 @@
|
|||
package net.moonleay.gimble.mixin;
|
||||
|
||||
import net.minecraft.client.Keyboard;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
|
||||
@Mixin(Keyboard.class)
|
||||
public class KeyMixin {
|
||||
// This Mixin is not registered. This will be used to handle key events with static Buttons.
|
||||
@Inject(method = "onKey", at = @At("TAIL"))
|
||||
private void onKey(long window, int key, int scancode, int action, int modifiers, CallbackInfo ci) {
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue