diff options
| author | Anton Novoselov <[email protected]> | 2017-08-01 12:53:38 +0300 |
|---|---|---|
| committer | Anton Novoselov <[email protected]> | 2017-08-01 12:53:38 +0300 |
| commit | 236f03c0b9a4982328ed1201978f7f69d192d9b2 (patch) | |
| tree | e486f2fa39dba203563895541e92c60ed3e25759 /tools/common/ObjFileReader.h | |
| parent | Added screens to welcome page (diff) | |
| download | blast-236f03c0b9a4982328ed1201978f7f69d192d9b2.tar.xz blast-236f03c0b9a4982328ed1201978f7f69d192d9b2.zip | |
Blast 1.1 release (windows / linux)
see docs/release_notes.txt for details
Diffstat (limited to 'tools/common/ObjFileReader.h')
| -rw-r--r-- | tools/common/ObjFileReader.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/common/ObjFileReader.h b/tools/common/ObjFileReader.h deleted file mode 100644 index acc85ba..0000000 --- a/tools/common/ObjFileReader.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once -#include <memory> -#include "IMeshFileReader.h" - -class ObjFileReader: public IMeshFileReader -{ -public: - ObjFileReader(); - ~ObjFileReader() = default; - - /* - Load from the specified file path, returning a mesh or nullptr if failed - */ - std::shared_ptr<Nv::Blast::Mesh> loadFromFile(std::string filename); - -}; |