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.

123456789101112131415161718192021222324
  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. /*!
  10. * \brief atexit() handler
  11. */
  12. void cleanupHandler(void);
  13. /*!
  14. * \brief Program entry point
  15. * \param argc number of arguments
  16. * \param argv array with argc strings
  17. * \returns 0 on success
  18. */
  19. int main(int argc, char *argv[]);
  20. #endif