From 7e7958b83c619490b4a57f7652b8cadeb7bf90eb Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 7 Apr 2019 16:27:31 +0800 Subject: changelog --- .../me/shedaniel/rei/utils/ClientWeatherUtils.java | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java (limited to 'src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java') 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; + } + +} -- cgit