12 lines
117 B
C++
12 lines
117 B
C++
|
#ifndef CUBE_HPP
|
||
|
#define CUBE_HPP
|
||
|
|
||
|
#include "mesh.hpp"
|
||
|
|
||
|
class Cube : Mesh {
|
||
|
public:
|
||
|
Cube();
|
||
|
};
|
||
|
|
||
|
#endif // CUBE_HPP
|