Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.h 442B

12345678910111213141516171819202122232425262728
  1. /*!
  2. * \file include/main.h
  3. * \brief Where main() is
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _MAIN_H_
  8. #define _MAIN_H_
  9. #include "OpenRaider.h"
  10. extern OpenRaider *gOpenRaider; //!< Main Game Singleton
  11. /*!
  12. * \brief atexit() handler
  13. */
  14. void cleanupHandler(void);
  15. /*!
  16. * \brief Program entry point
  17. * \param argc number of arguments
  18. * \param argv array with argc strings
  19. * \returns 0 on success
  20. */
  21. int main(int argc, char *argv[]);
  22. #endif