summaryrefslogtreecommitdiffhomepage
path: root/MagicEx/ModelFileOBJ.h
diff options
context:
space:
mode:
Diffstat (limited to 'MagicEx/ModelFileOBJ.h')
-rw-r--r--MagicEx/ModelFileOBJ.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/MagicEx/ModelFileOBJ.h b/MagicEx/ModelFileOBJ.h
deleted file mode 100644
index dcffc7d..0000000
--- a/MagicEx/ModelFileOBJ.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
- Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
- Copyright (c) 1997-2006, Destroyer Studios LLC.
-
- AUTHOR: John DiCamillo
-
-
- OVERVIEW
- ========
- File loader for Wavefront/OBJ format models
-*/
-
-#pragma once
-
-#include <Solid.h>
-
-
-class ModelFileOBJ : public ModelFile
-{
-public:
- ModelFileOBJ(const char* fname);
- virtual ~ModelFileOBJ();
-
- virtual bool Load(Model* m, double scale=1.0);
- virtual bool Save(Model* m);
-};