Files
SoilSimulator/include/weather.hpp

21 lines
290 B
C++

#ifndef WEATHER_H_
#define WEATHER_H_
#include <vector>
class Weather{
private:
float* rain;
float* rain_nutrient;
float* rain_ph;
float* temperature;
float* wind;
float* O2;
float* CO2;
float* H2O;
float* CH4;
float* N2;
float* airpressure;
};
#endif // WEATHER_H_