#ifndef RAYTRACE_H #define RAYTRACE_H #include "math/Vector.h" struct RayTrace final { enum class Type { AIR, BLOCK }; Type type; IntVector3 block; }; #endif