deleted duplicate

This commit is contained in:
2026-02-05 17:41:29 +02:00
parent ffd2cca5c9
commit ed09c14f93

View File

@@ -1,17 +0,0 @@
#pragma once
#include <vector>
#include "Shape.hpp"
class CompoundShape {
public:
std::vector<Shape> shapes;
CompoundShape(const std::vector<Shape> shapes);
void draw();
private:
glm::mat4 transform;
};