mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
14 lines
130 B
C++
14 lines
130 B
C++
#ifndef BOX_H
|
|
#define BOX_H
|
|
|
|
#include"mesh.h"
|
|
|
|
namespace vb01{
|
|
class Box : public Mesh{
|
|
public:
|
|
Box(Vector3);
|
|
};
|
|
}
|
|
|
|
#endif
|