15 lines
430 B
C
15 lines
430 B
C
/* ~/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 {
|
|
int grow_count;
|
|
void grow_cell(flecs::entity seed_e, int id);
|
|
void commit_growth_queue(flecs::world &&world);
|
|
void mark_cells(flecs::world &&ecs_);
|
|
void mark_doors(flecs::world &&ecs_);
|
|
growth_module(flecs::world &ecs);
|
|
};
|
|
|
|
#endif // GROWTH_MODULE_H_
|