From ed09c14f93741b7124ce50f420c5053ddffb815b Mon Sep 17 00:00:00 2001 From: Aaro Saila Date: Thu, 5 Feb 2026 17:41:29 +0200 Subject: [PATCH] deleted duplicate --- src/CompoundShape.hpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/CompoundShape.hpp 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; -};