Files
vb01/rectangle.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
188 B
C++
Executable File

#ifndef RECTANGLE_H
#define RECTANGLE_H
#include"vector.h"
namespace vb01{
class Rectangle{
public:
Rectangle(Vector3);
~Rectangle();
void update();
private:
};
}
#endif