Now layout build works fine

This commit is contained in:
2024-12-01 04:12:25 +03:00
parent 34bded906c
commit 42dc811cf6
28 changed files with 4040 additions and 2640 deletions

View File

@@ -0,0 +1,12 @@
/* ~/godot-projects/streaming_world/src/modules/stream/ui/growth_module.h */
#ifndef GROWTH_MODULE_H_
#define GROWTH_MODULE_H_
#include "base_data.h"
struct growth_module {
void grow_cell(flecs::entity seed_e, int id);
void commit_growth_queue(flecs::world &&world);
growth_module(flecs::world &ecs);
};
#endif // GROWTH_MODULE_H_