summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-08 14:27:28 +0100
committerskal <pascal.massimino@gmail.com>2026-02-08 14:27:28 +0100
commitde2e997de3edb032645bc6c1aecbbeaa28cc9a50 (patch)
tree1f19b8af6ca96c6cf2d6e72795ab3c72bd595851 /src
parent6a98803054d47e3d777cae7dae5ff54d12919510 (diff)
fix: Remove local redefinition of PlaneData in scene_loader.cc
Diffstat (limited to 'src')
-rw-r--r--src/3d/scene_loader.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/3d/scene_loader.cc b/src/3d/scene_loader.cc
index f5b587e..63daaa0 100644
--- a/src/3d/scene_loader.cc
+++ b/src/3d/scene_loader.cc
@@ -7,13 +7,6 @@
#include <vector>
#include <memory> // For std::shared_ptr
#include <new> // For std::nothrow
-#include "plane_data.h"
-
-// Local struct to hold plane-specific data
-struct PlaneData {
- float distance;
-};
-
bool SceneLoader::LoadScene(Scene& scene, const uint8_t* data, size_t size) {
if (!data || size < 16) { // Header size check
printf("SceneLoader: Data too small\n");