#ifndef RAY_INTERSECT_H #define RAY_INTERSECT_H class Entity; struct RayIntersect { Entity * E; double param_t; int special; double special0, special1; }; #endif