Files
vb01/quad.h
T
2021-10-19 19:06:41 +03:00

19 lines
239 B
C++
Executable File

#ifndef QUAD_H
#define QUAD_H
#include "vector.h"
#include "mesh.h"
namespace vb01{
class Quad : public Mesh{
public:
Quad(Vector3, bool = true);
void setSize(Vector3);
private:
Vector3 size;
bool spatial;
};
}
#endif