18 lines
265 B
C++
18 lines
265 B
C++
#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_
|