init
This commit is contained in:
parent
c0513fb17c
commit
4fc6072d11
6 changed files with 43 additions and 0 deletions
12
planeObject.cpp
Normal file
12
planeObject.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
class Plane {
|
||||
public:
|
||||
Plane(std::string& text);
|
||||
float* getPoints();
|
||||
uint64_t* getColor();
|
||||
private:
|
||||
float* points;
|
||||
uint64_t* color;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue