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

1.5.9-SNAPSHOT

This commit is contained in:
Xiao-MoMi
2022-07-14 19:48:37 +08:00
parent 213e3ab178
commit 10f2479449
21 changed files with 870 additions and 85 deletions

View File

@@ -4,9 +4,7 @@ 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){
@@ -17,15 +15,12 @@ public class Sprinkler {
public int getWater() {
return water;
}
public String getNamespacedID_1() {
return namespacedID_1;
}
public String getNamespacedID_2() {
return namespacedID_2;
}
public int getRange() {
return range;
}
@@ -33,15 +28,12 @@ public class Sprinkler {
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;
}