init
This commit is contained in:
parent
c0513fb17c
commit
4fc6072d11
6 changed files with 43 additions and 0 deletions
13
objObject.cpp
Normal file
13
objObject.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include "planeObject.cpp"
|
||||
|
||||
class Object {
|
||||
public:
|
||||
Object(std::string txt);
|
||||
Plane* getSides();
|
||||
char* getName();
|
||||
bool isContained();
|
||||
private:
|
||||
Plane* sides;
|
||||
char* name;
|
||||
float* radius;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue