void cpSpaceHashFree(cpSpaceHash *hash) { if(!hash) return; cpSpaceHashDestroy(hash); cpfree(hash); }
void cpSpaceHashFree(cpSpaceHash *hash) { if(hash){ cpSpaceHashDestroy(hash); cpfree(hash); } }