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.

OpenRaider.h 521B

123456789101112131415161718192021222324252627282930313233343536
  1. /*!
  2. * \file include/OpenRaider.h
  3. * \brief Main Game Object
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _OPENRAIDER_H_
  8. #define _OPENRAIDER_H_
  9. /*!
  10. * \brief Main Game Singleton
  11. */
  12. class OpenRaider {
  13. public:
  14. /*!
  15. * \brief Constructs an object of OpenRaider
  16. */
  17. OpenRaider();
  18. /*!
  19. * \brief Deconstructs an object of OpenRaider
  20. */
  21. ~OpenRaider();
  22. /*!
  23. * \brief Load the configuration file
  24. * \returns 0 on success
  25. */
  26. int loadConfig(const char *config);
  27. private:
  28. };
  29. #endif