3d-render/planeObject.cpp

13 lines
183 B
C++
Raw Normal View History

2025-10-09 11:19:08 +02:00
#include <cstdint>
#include <string>
class Plane {
public:
Plane(std::string& text);
float* getPoints();
uint64_t* getColor();
private:
float* points;
uint64_t* color;
}