3d-render/planeObject.cpp
2025-10-09 11:19:08 +02:00

12 lines
183 B
C++

#include <cstdint>
#include <string>
class Plane {
public:
Plane(std::string& text);
float* getPoints();
uint64_t* getColor();
private:
float* points;
uint64_t* color;
}