6 lines
152 B
Java
6 lines
152 B
Java
package com.atsuishio.superbwarfare.entity;
|
|
|
|
public interface ICannonEntity extends IVehicleEntity {
|
|
float getHealth();
|
|
float getMaxHealth();
|
|
}
|