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

10 lines
181 B
Java

package com.atsuishio.superbwarfare.entity;
public interface IChargeEntity {
void charge(int amount);
boolean canCharge();
int getEnergy();
int getMaxEnergy();
}