15 lines
214 B
C++
15 lines
214 B
C++
#ifndef PLANTS_H_
|
|
#define PLANTS_H_
|
|
|
|
struct Plant_s{
|
|
unsigned int* location_index;
|
|
unsigned int* plant_type_index;
|
|
float* Growth;
|
|
float* Moister;
|
|
float* Nutrient;
|
|
float* Weeds;
|
|
};
|
|
|
|
|
|
#endif // PLANTS_H_
|