9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-25 18:09:28 +00:00
Files
Custom-Crops/src/main/java/net/momirealms/customcrops/objects/GrowingCrop.java
Xiao-MoMi 11c7c6f292 2.1.0-r1
2022-12-02 22:14:18 +08:00

26 lines
428 B
Java

package net.momirealms.customcrops.objects;
public class GrowingCrop {
private int stage;
private final String type;
public GrowingCrop(int stage, String type) {
this.stage = stage;
this.type = type;
}
public int getStage() {
return stage;
}
public String getType() {
return type;
}
public void setStage(int stage) {
this.stage = stage;
}
}