Open Source Tomb Raider Engine
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

LoaderTR3.h 357B

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