diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-04-07 16:27:31 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-04-07 16:27:41 +0800 |
| commit | 7e7958b83c619490b4a57f7652b8cadeb7bf90eb (patch) | |
| tree | f1451c8310aec13d31298a0b3ba1f3ea1ea5755b /src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java | |
| parent | 9e0931f2781f9041acd73954a0dfaf1e14802404 (diff) | |
| download | RoughlyEnoughItems-7e7958b83c619490b4a57f7652b8cadeb7bf90eb.tar.gz RoughlyEnoughItems-7e7958b83c619490b4a57f7652b8cadeb7bf90eb.tar.bz2 RoughlyEnoughItems-7e7958b83c619490b4a57f7652b8cadeb7bf90eb.zip | |
changelog
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; + } + +} |
