basis for project to upload to server.

This commit is contained in:
2025-07-09 14:29:03 +02:00
commit 7fcf5f816b
15 changed files with 316 additions and 0 deletions

14
include/plants.hpp Normal file
View File

@ -0,0 +1,14 @@
#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_