minecraft-src/net/minecraft/world/entity/PlayerRideableJumping.java
2025-07-04 01:41:11 +03:00

15 lines
272 B
Java

package net.minecraft.world.entity;
public interface PlayerRideableJumping extends PlayerRideable {
void onPlayerJump(int jumpPower);
boolean canJump();
void handleStartJump(int jumpPower);
void handleStopJump();
default int getJumpCooldown() {
return 0;
}
}