This commit is contained in:
2024-12-29 19:07:48 +01:00
parent e42cd89337
commit 25b18f8484
4 changed files with 48 additions and 65 deletions

View File

@@ -25,9 +25,10 @@ struct Moon
struct Branch
{
Color color;
uint8_t numOfBranches;
float lenghthRatio;
uint8_t colorR;
uint8_t colorG;
uint8_t colorB;
uint8_t branch_count;
};
struct Dna
@@ -37,6 +38,7 @@ struct Dna
int time;
uint128 mountenSeed;
uint128 starSeed;
uint128 branchSeed;
std::array<Branch, MAX_DEPTH> branches;
};