Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LoaderTR1.h 339B

12345678910111213141516171819202122232425
  1. /*!
  2. * \file include/loader/LoaderTR1.h
  3. * \brief TR1 level file loader
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _LOADER_LOADER_TR1_H_
  8. #define _LOADER_LOADER_TR1_H_
  9. #include "loader/Loader.h"
  10. class LoaderTR1 : public Loader {
  11. public:
  12. LoaderTR1();
  13. virtual ~LoaderTR1();
  14. virtual int load(std::string f);
  15. private:
  16. };
  17. #endif