mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
18 lines
227 B
C++
Executable File
18 lines
227 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);
|
|
inline Vector3 getSize(){return size;}
|
|
private:
|
|
Vector3 size;
|
|
};
|
|
}
|
|
|
|
#endif
|