Renderer/test/c/fluid/FluidMemoryManagementTests.c
austin bbf14ffd87
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
fix testing
2024-12-04 19:30:35 -05:00

20 lines
295 B
C

#include <stdio.h>
#include "fluid/chunk.h"
int fluid_FluidMemoryManagementTests(int argc, char **argv){
//allocate a sparse array
SparseChunkArray * sparseArray = fluid_create_sparse_array();
//free a sparse array
fluid_free_sparse_array(sparseArray);
return 0;
}