mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 12:03:25 +00:00
17 lines
184 B
C++
Executable File
17 lines
184 B
C++
Executable File
#ifndef BOX_H
|
|
#define BOX_H
|
|
|
|
#include"mesh.h"
|
|
|
|
namespace vb01{
|
|
class Box : public Mesh{
|
|
public:
|
|
Box(Vector3);
|
|
void setSize(Vector3);
|
|
private:
|
|
Vector3 size;
|
|
};
|
|
}
|
|
|
|
#endif
|