12345678910111213141516171819202122232425262728 |
- /*!
- * \file include/main.h
- * \brief Where main() is
- *
- * \author xythobuz
- */
- #ifndef _MAIN_H_
- #define _MAIN_H_
-
- #include "OpenRaider.h"
-
- extern OpenRaider *gOpenRaider; //!< Main Game Singleton
-
- /*!
- * \brief atexit() handler
- */
- void cleanupHandler(void);
-
- /*!
- * \brief Program entry point
- * \param argc number of arguments
- * \param argv array with argc strings
- * \returns 0 on success
- */
- int main(int argc, char *argv[]);
-
- #endif
|