9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-22 08:29:35 +00:00

1.5.0-SNAPSHOT

This commit is contained in:
Xiao-MoMi
2022-07-04 02:07:14 +08:00
parent f1a2bd6d1c
commit eda25b0bfc
74 changed files with 3379 additions and 5054 deletions

View File

@@ -0,0 +1,48 @@
package net.momirealms.customcrops.utils;
public class Sprinkler {
private int water;
private int range;
//2D
private String namespacedID_1;
//3D
private String namespacedID_2;
public Sprinkler(int range, int water){
this.water = water;
this.range = range;
}
public int getWater() {
return water;
}
public String getNamespacedID_1() {
return namespacedID_1;
}
public String getNamespacedID_2() {
return namespacedID_2;
}
public int getRange() {
return range;
}
public void setRange(int range) {
this.range = range;
}
public void setNamespacedID_2(String namespacedID_2) {
this.namespacedID_2 = namespacedID_2;
}
public void setNamespacedID_1(String namespacedID_1) {
this.namespacedID_1 = namespacedID_1;
}
public void setWater(int water) {
this.water = water;
}
}