superb-warfare/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/IArmedVehicleEntity.java
2025-01-15 05:47:41 +08:00

19 lines
391 B
Java

package com.atsuishio.superbwarfare.entity.vehicle;
import net.minecraft.world.entity.player.Player;
public interface IArmedVehicleEntity {
void vehicleShoot(Player player);
boolean isDriver(Player player);
int mainGunRpm();
boolean canShoot(Player player);
int getAmmoCount(Player player);
boolean banHand();
boolean hidePassenger();
int zoomFov();
}