superb-warfare/src/main/java/com/atsuishio/superbwarfare/entity/ICannonEntity.java
2024-12-17 23:31:24 +08:00

9 lines
239 B
Java

package com.atsuishio.superbwarfare.entity;
import net.minecraft.world.entity.player.Player;
public interface ICannonEntity extends IVehicleEntity {
void cannonShoot(Player player);
float getHealth();
float getMaxHealth();
}