feat!: rework header files

This commit is contained in:
2026-01-06 20:07:44 +01:00
parent f4f9f4a7ac
commit 66761b8e5d
12 changed files with 122 additions and 78 deletions

View File

@@ -1,14 +1,13 @@
#ifndef CUBE_HPP
#define CUBE_HPP
#include "camera.hpp"
#include "glm/ext/vector_float3.hpp"
#include "shape.hpp"
class Cube : public Shape
{
public:
Cube(Camera &camera, glm::vec3 pos, std::string texture);
Cube(Camera &camera, glm::vec3 pos, const char *texture);
void render(int width, int height) override;
};