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.

main.h 525B

12345678910111213141516171819202122232425262728293031
  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 "Console.h"
  10. #include "Game.h"
  11. #include "Menu.h"
  12. #include "OpenRaider.h"
  13. #include "Window.h"
  14. Console &getConsole();
  15. Game &getGame();
  16. Menu &getMenu();
  17. OpenRaider &getOpenRaider();
  18. Window &getWindow();
  19. /*!
  20. * \brief Program entry point
  21. * \param argc number of arguments
  22. * \param argv array with argc strings
  23. * \returns 0 on success
  24. */
  25. int main(int argc, char *argv[]);
  26. #endif