Add trail prepass scaffolding

This commit is contained in:
chelsea
2025-12-02 22:18:26 -06:00
parent 317a3f0dcc
commit 483200363e
4 changed files with 225 additions and 3 deletions

View File

@@ -79,5 +79,6 @@ typedef struct {
void worldgen_init(worldgen_ctx *ctx, int world_seed, int sea_level, int snow_line);
void worldgen_generate_chunk(worldgen_ctx *ctx, int chunk_x, int chunk_z, chunk_data *out);
void worldgen_prepass(worldgen_ctx *ctx, int min_x, int max_x, int min_z, int max_z);
void worldgen_free_trails(worldgen_ctx *ctx);
#endif