mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-08 13:06:02 +08:00
16 lines
356 B
Java
16 lines
356 B
Java
package emu.grasscutter.game.managers.StaminaManager;
|
|
|
|
public class Consumption {
|
|
public ConsumptionType consumptionType;
|
|
public int amount;
|
|
|
|
public Consumption(ConsumptionType ct, int a) {
|
|
consumptionType = ct;
|
|
amount = a;
|
|
}
|
|
|
|
public Consumption(ConsumptionType ct) {
|
|
this(ct, ct.amount);
|
|
}
|
|
}
|