Files
vb01/box.h
T
devZoGok 9479e3324f implemented shadows for non positional lights
fixed skybox
implemented translation and rotation
2021-10-18 19:05:52 +03:00

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