12 lines
183 B
C++
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;
|
|
}
|