/** * @file Cube.h * @brief An object to store the data of one cube */ #pragma once #include "Vector3D.h" class Cube{ public: V3D color; bool isOccupied{false}; };