mirror of
https://github.com/Xiao-MoMi/Custom-Crops.git
synced 2025-12-25 18:09:28 +00:00
26 lines
428 B
Java
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;
|
|
}
|
|
}
|