ClientWeatherUtils.java 412 B

1234567891011121314151617181920212223
  1. package me.shedaniel.rei.utils;
  2. public class ClientWeatherUtils {
  3. private float rain = 0f, thunder = 0f;
  4. public float getRain() {
  5. return rain;
  6. }
  7. public void setRain(float rain) {
  8. this.rain = rain;
  9. }
  10. public float getThunder() {
  11. return thunder;
  12. }
  13. public void setThunder(float thunder) {
  14. this.thunder = thunder;
  15. }
  16. }