diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java b/src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java new file mode 100644 index 000000000..77db8837c --- /dev/null +++ b/src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java @@ -0,0 +1,23 @@ +package me.shedaniel.rei.utils; + +public class ClientWeatherUtils { + + private float rain = 0f, thunder = 0f; + + public float getRain() { + return rain; + } + + public void setRain(float rain) { + this.rain = rain; + } + + public float getThunder() { + return thunder; + } + + public void setThunder(float thunder) { + this.thunder = thunder; + } + +} |
