Renderer/src/main/c/includes/fluid/sim/simulator.h
austin 5c44d36f25
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
dedicated native fluid simulator
2024-12-06 14:35:03 -05:00

18 lines
320 B
C

#ifndef FLUID_SIMULATOR_H
#define FLUID_SIMULATOR_H
#include "public.h"
#include "fluid/env/environment.h"
/**
* Simulates the various chunk queues in the fluid environment
* @param environment The environment storing the simulation queues
*/
LIBRARY_API void fluid_simulate(Environment * environment);
#endif