#include "stdafx.h" #include "v8World/ContactManagerSpatialHash.h" #include "v8World/ContactManager.h" #include "v8World/Contact.h" #include "v8World/Assembly.h" // instantiate for contactmanager. template class RBX::SpatialHash; #define CONTACT_MANAGER_MAX_CELLS_PER_PRIMITIVE 100 namespace RBX { ContactManagerSpatialHash::ContactManagerSpatialHash(World* world, ContactManager* contactManager) : SpatialHash(world, contactManager, CONTACT_MANAGER_MAX_CELLS_PER_PRIMITIVE) // max cells per primitive is 100 for contact manager { } }