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); }