superb-warfare/src/main/java/com/atsuishio/superbwarfare/entity/IArmedVehicleEntity.java
2024-12-29 00:57:30 +08:00

16 lines
312 B
Java

package com.atsuishio.superbwarfare.entity;
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);
}