aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/utils/ClientWeatherUtils.java
blob: 77db8837ce8f4fd1cc089d42e6dcb5539e4de1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
    }
    
}