Renderer/src/main/c/includes/fluid/sim/grid/simulation.h
2024-12-06 13:18:40 -05:00

16 lines
434 B
C

#ifndef SIMULATION_H
#define SIMULATION_H
#include "fluid/queue/chunk.h"
#include "fluid/env/environment.h"
/**
* Performs the main simulation
* @param numChunks The number of chunks
* @param passedInChunks The chunks to simulate
* @param environment The environment data
* @param timestep The timestep to simulate by
*/
void simulate(int numChunks, Chunk ** passedInChunks, Environment * environment, float timestep);
#endif