gbarubik/inc/cube.hpp

12 lines
117 B
C++
Raw Normal View History

2023-11-24 20:19:42 -05:00
#ifndef CUBE_HPP
#define CUBE_HPP
#include "mesh.hpp"
class Cube : Mesh {
public:
Cube();
};
#endif // CUBE_HPP