aboutsummaryrefslogtreecommitdiff
path: root/tools/common/IMeshFileReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/common/IMeshFileReader.h')
-rw-r--r--tools/common/IMeshFileReader.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/common/IMeshFileReader.h b/tools/common/IMeshFileReader.h
deleted file mode 100644
index d632a2f..0000000
--- a/tools/common/IMeshFileReader.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-#include <memory>
-#include <string>
-#include "NvBlastExtAuthoringMesh.h"
-
-
-class IMeshFileReader
-{
-public:
-
- /*
- Load from the specified file path, returning a mesh or nullptr if failed
- */
- virtual std::shared_ptr<Nv::Blast::Mesh> loadFromFile(std::string filename) = 0;
-
- virtual bool getConvertToUE4() { return bConvertToUE4; }
- virtual void setConvertToUE4(bool bConvert) { bConvertToUE4 = bConvert; }
-
-private:
- bool bConvertToUE4;
-}; \ No newline at end of file