#ifndef JFK_COLLISION_H #define JFK_COLLISION_H #include "object_s.h" #include "obstacle_s.h" namespace JFK { namespace server { bool collision(object* obj1, object* obj2, double t); bool in_obstacle (object* obj, obstacle* o); } } #endif