Continuing working on dumping the world

This commit is contained in:
Godzil
2020-02-28 09:29:09 +00:00
parent 8ceb68fdff
commit b4ae737b40
19 changed files with 164 additions and 22 deletions

View File

@@ -10,6 +10,7 @@
#define DORAYME_TRIANGLE_H
#include <shape.h>
#include <stdio.h>
class Triangle : public Shape
{
@@ -25,6 +26,8 @@ public:
Triangle(Point p1, Point p2, Point p3);
BoundingBox getBounds();
void dumpMe(FILE *fp);
};
#endif /* DORAYME_TRIANGLE_H */