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

17
include/layers.hpp Normal file
View File

@ -0,0 +1,17 @@
#ifndef LAYERS_H_
#define LAYERS_H_
struct Layer_s{
unsigned int size;
unsigned int* location_index;
float* compaction;
float* H2O;
float* Organic_life;
float* Organic_dead;
float* Lime;
float* Roots;
float* Stone_volume;
}
#endif // LAYERS_H_