1 2 3 4 5 6 7 8 9 10 11
#ifndef CUBE_HPP #define CUBE_HPP #include "mesh.hpp" class Cube : Mesh { public: Cube(); }; #endif // CUBE_HPP