Code/net/minecraft/world/entity/PlayerRideableJumping.java

15 lines
293 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.entity;
public interface PlayerRideableJumping extends PlayerRideable {
void onPlayerJump(int p_21696_);
boolean canJump();
void handleStartJump(int p_21695_);
void handleStopJump();
default int getJumpCooldown() {
return 0;
}
}