16 lines
434 B
C
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 |