fix: correct import filename

This commit is contained in:
2025-11-05 11:48:24 +01:00
parent 339da4ef02
commit 71a14af25c
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#define COMPONENTS_MESH_H_
#include <memory>
#include "engine/renderer/renderable.h"
#include "engine/renderer/renderable.hpp"
#include "engine/export.h"

View File

@ -11,7 +11,7 @@ class Renderer;
class ENGINE_API Renderable {
protected:
Renderable();
Renderable() = default;
virtual ~Renderable() = default;
private: