Open Source Tomb Raider Engine
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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