diff --git a/src/CompoundShape.hpp b/src/CompoundShape.hpp deleted file mode 100644 index a40aeaa..0000000 --- a/src/CompoundShape.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#include - -#include "Shape.hpp" - -class CompoundShape { -public: - std::vector shapes; - - CompoundShape(const std::vector shapes); - - void draw(); - -private: - glm::mat4 transform; -};