-
Dave authored
Added arcball camera. Implemented Texture and VertexArray classes, fixed stb submodule issue, added Roboto font to imgui, added build instructions
Dave authoredAdded arcball camera. Implemented Texture and VertexArray classes, fixed stb submodule issue, added Roboto font to imgui, added build instructions
Plane.h 155 B
#ifndef MAKE_PLANE_H_
#define MAKE_PLANE_H_
class Plane
{
private:
/* data */
public:
Plane(/* args */);
~Plane();
};
#endif // MAKE_PLANE_H_