8 lines
143 B
C
8 lines
143 B
C
#ifndef SIMULATION_H
|
|
#define SIMULATION_H
|
|
|
|
#include "./chunk.h"
|
|
|
|
void simulate(int numChunks, Chunk ** passedInChunks, float timestep);
|
|
|
|
#endif |