1234567891011121314151617181920212223 |
- 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;
- }
-
- }
|